1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 16:55:20 +03:00

[Companion] Default RSSI low and critical alarm values were reversed (fixes #5407).

This commit is contained in:
Max Paperno 2017-11-25 14:36:46 -05:00
parent 478411bf82
commit b8042c9da1

View file

@ -603,8 +603,8 @@ class RSSIAlarmData {
void clear() {
this->level[0] = 2;
this->level[1] = 3;
this->warning = 42;
this->critical = 45;
this->warning = 45;
this->critical = 42;
this->disabled = false;
}
};