mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 08:45:24 +03:00
Changed some stuff after bsongis kind review.
This commit is contained in:
parent
9de8cefa79
commit
520df52951
3 changed files with 14 additions and 14 deletions
|
@ -338,7 +338,7 @@ LCD_DUAL_BUFFER = NO
|
||||||
# Enable internal module PPM mode for Taranis
|
# Enable internal module PPM mode for Taranis
|
||||||
|
|
||||||
# Values = NO, YES
|
# Values = NO, YES
|
||||||
TARANIS_INTERNAL_PPM = YES
|
TARANIS_INTERNAL_PPM = NO
|
||||||
|
|
||||||
# Enable disk IO simulation in simulator
|
# Enable disk IO simulation in simulator
|
||||||
# Simulator will use FatFs module and simulated IO layer that
|
# Simulator will use FatFs module and simulated IO layer that
|
||||||
|
|
|
@ -567,7 +567,6 @@ PACK(typedef struct {
|
||||||
#if defined(PCBTARANIS)
|
#if defined(PCBTARANIS)
|
||||||
#define MODELDATA_EXTRA_216 \
|
#define MODELDATA_EXTRA_216 \
|
||||||
uint8_t externalModule; \
|
uint8_t externalModule; \
|
||||||
uint8_t internalModule; \
|
|
||||||
uint8_t trainerMode; \
|
uint8_t trainerMode; \
|
||||||
ModuleData moduleData[NUM_MODULES+1]; \
|
ModuleData moduleData[NUM_MODULES+1]; \
|
||||||
char curveNames[MAX_CURVES][6]; \
|
char curveNames[MAX_CURVES][6]; \
|
||||||
|
|
|
@ -221,7 +221,8 @@ void menuModelSetup(uint8_t event)
|
||||||
#endif
|
#endif
|
||||||
bool CURSOR_ON_CELL = (m_posHorz >= 0);
|
bool CURSOR_ON_CELL = (m_posHorz >= 0);
|
||||||
#if defined(TARANIS_INTERNAL_PPM)
|
#if defined(TARANIS_INTERNAL_PPM)
|
||||||
MENU_TAB({ 0, 0, TIMERS_ROWS, 0, 1, 0, 0, LABEL(Throttle), 0, 0, 0, LABEL(PreflightCheck), 0, 0, SW_WARN_ITEMS(), POT_WARN_ITEMS(), NAVIGATION_LINE_BY_LINE|(NUM_STICKS+NUM_POTS+NUM_ROTARY_ENCODERS-1), 0,
|
MENU_TAB({ 0, 0, TIMERS_ROWS, 0, 1, 0, 0, LABEL(Throttle), 0, 0, 0, LABEL(PreflightCheck), 0, 0, SW_WARN_ITEMS(), POT_WARN_ITEMS(),
|
||||||
|
NAVIGATION_LINE_BY_LINE|(NUM_STICKS+NUM_POTS+NUM_ROTARY_ENCODERS-1), 0,
|
||||||
LABEL(InternalModule),
|
LABEL(InternalModule),
|
||||||
(IS_MODULE_XJT(INTERNAL_MODULE)) ? (uint8_t)1 : (uint8_t)0,
|
(IS_MODULE_XJT(INTERNAL_MODULE)) ? (uint8_t)1 : (uint8_t)0,
|
||||||
IF_INTERNAL_MODULE_ON(INTERNAL_MODULE_CHANNELS_ROWS()),
|
IF_INTERNAL_MODULE_ON(INTERNAL_MODULE_CHANNELS_ROWS()),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue