mirror of
https://github.com/opentx/opentx.git
synced 2025-07-19 14:25:11 +03:00
Compilation error fix
This commit is contained in:
parent
d23a1f5739
commit
2e252aacac
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ int getSwitchWarningsCount()
|
|||
#elif defined(MODULE_D16_EU_ONLY_SUPPORT)
|
||||
#define INTERNAL_MODULE_MODE_ROWS 0 // Module Type only
|
||||
#else
|
||||
#define INTERNAL_MODULE_MODE_ROWS (IS_MODULE_XJT(INTERNAL_MODULE)) ? (uint8_t)1 : (uint8_t)0) // Module type + RF protocols
|
||||
#define INTERNAL_MODULE_MODE_ROWS (IS_MODULE_XJT(INTERNAL_MODULE) ? (uint8_t)1 : (uint8_t)0) // Module type + RF protocols
|
||||
#endif
|
||||
#if defined(TARANIS_INTERNAL_PPM)
|
||||
#define IF_INTERNAL_MODULE_ON(x) (g_model.moduleData[INTERNAL_MODULE].type == MODULE_TYPE_NONE ? HIDDEN_ROW : (uint8_t)(x))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue