1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-17 05:15:18 +03:00

Popup displayed if the ACCESS module is not up to date

This commit is contained in:
Bertrand Songis 2019-11-22 11:13:26 +01:00
parent 6acd4201dd
commit 7f06c06e84
No known key found for this signature in database
GPG key ID: F189F79290FEC50F
3 changed files with 17 additions and 2 deletions

View file

@ -569,8 +569,10 @@ void flightReset(uint8_t check=true);
PACK(struct GlobalData {
uint8_t unexpectedShutdown:1;
uint8_t externalAntennaEnabled: 1;
uint8_t spare:6;
uint8_t externalAntennaEnabled:1;
uint8_t authenticationCount:2;
uint8_t authenticationPopup:1;
uint8_t spare:3;
});
extern GlobalData globalData;