mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-20 14:55:09 +03:00
Merge pull request #6623 from opentx/raphaelcoeffic/fix-x10-inputs
X10: fixed optional inputs
This commit is contained in:
commit
6f37caa8d4
8 changed files with 75 additions and 68 deletions
|
@ -180,7 +180,7 @@ bool isSourceAvailable(int source)
|
|||
}
|
||||
|
||||
#if defined(PCBX10)
|
||||
if ((source>=MIXSRC_S3 && source<=MIXSRC_S4) || (source>=MIXSRC_MOUSE1 && source<=MIXSRC_MOUSE2))
|
||||
if (source>=MIXSRC_MOUSE1 && source<=MIXSRC_MOUSE2)
|
||||
return false;
|
||||
#endif
|
||||
|
||||
|
@ -253,7 +253,12 @@ bool isInputSourceAvailable(int source)
|
|||
return true;
|
||||
#endif
|
||||
|
||||
if (source >= MIXSRC_Rud && source <= MIXSRC_MAX)
|
||||
#if defined(PCBX10)
|
||||
if (source >= MIXSRC_MOUSE1 && source <= MIXSRC_MOUSE2)
|
||||
return false;
|
||||
#endif
|
||||
|
||||
if (source >= MIXSRC_Rud && source < MIXSRC_MAX)
|
||||
return true;
|
||||
|
||||
if (source >= MIXSRC_FIRST_TRIM && source <= MIXSRC_LAST_TRIM)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue