1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 16:25:16 +03:00

5 pins were displayed when max was 4 in RX options

This commit is contained in:
Bertrand Songis 2019-04-23 09:26:39 +02:00
parent 16a0baf4e1
commit b18fa3b60b
3 changed files with 30 additions and 19 deletions

View file

@ -1400,4 +1400,13 @@ enum JackMode {
#include "gyro.h"
#endif
inline bool isSimu()
{
#if defined(SIMU)
return true;
#else
return false;
#endif
}
#endif // _OPENTX_H_