1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Macro renamed for #3675

This commit is contained in:
Bertrand Songis 2016-08-01 20:37:04 +02:00
parent ea095b2447
commit 9f37e7a0fb
2 changed files with 4 additions and 8 deletions

View file

@ -140,12 +140,8 @@ void telemetryWakeup()
varioWakeup();
}
#endif
#if defined(PCBX9DP) || defined(PCBX9E)
#define FRSKY_BAD_ANTENNA() (IS_VALID_XJT_VERSION() && telemetryData.swr.value > 0x33)
#else
#define FRSKY_BAD_ANTENNA() (telemetryData.swr.value > 0x33)
#endif
#define FRSKY_BAD_ANTENNA() (IS_SWR_VALUE_VALID() && telemetryData.swr.value > 0x33)
#if defined(CPUARM)
static tmr10ms_t alarmsCheckTime = 0;