1
0
Fork 0
mirror of https://github.com/EdgeTX/edgetx.git synced 2025-07-21 07:15:09 +03:00

Compilation fix

This commit is contained in:
Bertrand Songis 2019-05-27 19:21:54 +02:00
parent 86789f5460
commit aaf6bf24ed
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -540,6 +540,11 @@ bool isPxx2IsrmChannelsCountAllowed(int channels)
else
return (channels % 8 == 0);
}
#else
bool isPxx2IsrmChannelsCountAllowed(int channels)
{
return true;
}
#endif
bool isModuleUSingSport(uint8_t moduleBay, uint8_t moduleType)