1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 04:15:44 +03:00

Suppress OSD stats if disarming from crash-flip or untriggered launch control

The OSD stats provide no meaningful information and are just an annoyance when exiting these special states.

For Launch Control the stats will be displayed if the launch is triggered and normal flight occurrred.
This commit is contained in:
Bruce Luckcuck 2018-11-04 09:38:36 -05:00
parent 3492bcff3d
commit 98641cde75
5 changed files with 20 additions and 0 deletions

View file

@ -173,4 +173,5 @@ extern "C" {
bool usbCableIsInserted(void) { return false; }
bool usbVcpIsConnected(void) { return false; }
void pidSetAntiGravityState(bool newState) { UNUSED(newState); }
void osdSuppressStats(bool) {}
}