mirror of
https://github.com/opentx/opentx.git
synced 2025-07-19 14:25:11 +03:00
Merge pull request #8142 from opentx/dgatf/del_rea_switch
Delete REa switch from SKY9X
This commit is contained in:
commit
b51b9ae02b
3 changed files with 0 additions and 17 deletions
|
@ -543,10 +543,6 @@ enum SwitchSources {
|
|||
SWSRC_TrimT6Up,
|
||||
#endif
|
||||
|
||||
#if defined(PCBSKY9X)
|
||||
SWSRC_REa,
|
||||
#endif
|
||||
|
||||
SWSRC_FIRST_LOGICAL_SWITCH,
|
||||
SWSRC_SW1 = SWSRC_FIRST_LOGICAL_SWITCH,
|
||||
SWSRC_SW2,
|
||||
|
|
|
@ -342,12 +342,6 @@ bool isSwitchAvailable(int swtch, SwitchContext context)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(PCBSKY9X) && defined(REVX)
|
||||
if (swtch == SWSRC_REa) {
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (swtch >= SWSRC_FIRST_LOGICAL_SWITCH && swtch <= SWSRC_LAST_LOGICAL_SWITCH) {
|
||||
if (context == GeneralCustomFunctionsContext) {
|
||||
return false;
|
||||
|
|
|
@ -351,16 +351,9 @@ char * getSwitchPositionName(char * dest, swsrc_t idx)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(PCBSKY9X)
|
||||
else if (idx <= SWSRC_REa) {
|
||||
getStringAtIndex(s, STR_VSWITCHES, IDX_TRIMS_IN_STR_VSWITCHES+idx-SWSRC_FIRST_TRIM);
|
||||
}
|
||||
#else
|
||||
else if (idx <= SWSRC_LAST_TRIM) {
|
||||
getStringAtIndex(s, STR_VSWITCHES, IDX_TRIMS_IN_STR_VSWITCHES+idx-SWSRC_FIRST_TRIM);
|
||||
}
|
||||
#endif
|
||||
|
||||
else if (idx <= SWSRC_LAST_LOGICAL_SWITCH) {
|
||||
*s++ = 'L';
|
||||
strAppendUnsigned(s, idx-SWSRC_FIRST_LOGICAL_SWITCH+1, 2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue