From 9da190e73d8f40102b31aea531708dc17c7ee2bf Mon Sep 17 00:00:00 2001 From: Bertrand Songis Date: Tue, 27 Aug 2019 09:39:33 +0200 Subject: [PATCH] Fixes #6667 --- radio/src/opentx.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/radio/src/opentx.cpp b/radio/src/opentx.cpp index ab6ee19d1..98dad92cc 100644 --- a/radio/src/opentx.cpp +++ b/radio/src/opentx.cpp @@ -1725,6 +1725,9 @@ void copyTrimsToOffset(uint8_t ch) inline uint32_t PWR_PRESS_DURATION_MIN() { + if (g_eeGeneral.version != EEPROM_VER) + return 200; + return (2 - g_eeGeneral.pwrOnSpeed) * 100; }