1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-20 06:45:08 +03:00

R9M bugfix

This commit is contained in:
Bertrand Songis 2019-05-29 09:43:16 +02:00
parent 372c66e242
commit 0079dbb982
No known key found for this signature in database
GPG key ID: F189F79290FEC50F
2 changed files with 1 additions and 15 deletions

View file

@ -515,7 +515,7 @@ bool isSourceAvailableInResetSpecialFunction(int index)
bool isR9MModeAvailable(int mode)
{
#if defined(R9M_PROTO_FLEX)
return mode >= MODULE_SUBTYPE_R9M_EUPLUS;
return true;
#else
return mode <= MODULE_SUBTYPE_R9M_EU;
#endif