1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 16:55:20 +03:00
This commit is contained in:
Bertrand Songis 2019-08-27 09:39:33 +02:00
parent d85ade45d8
commit 9da190e73d
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -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;
}