1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-20 14:55:21 +03:00

Merge pull request #7028 from mikeller/add_crash_flip_led_warning

Added 'crash flip active' to the list of warnings to be shown on LED_STRIP.
This commit is contained in:
Michael Keller 2018-11-04 14:52:40 +13:00 committed by GitHub
commit 3492bcff3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 37 additions and 25 deletions

View file

@ -388,4 +388,6 @@ bool isArmingDisabled(void) { return false; }
uint8_t getRssiPercent(void) { return 0; }
bool isFlipOverAfterCrashActive(void) { return false; }
}

View file

@ -1055,9 +1055,7 @@ extern "C" {
uint16_t getCoreTemperatureCelsius(void) { return simulationCoreTemperature; }
bool isFlipOverAfterCrashMode(void) {
return false;
}
bool isFlipOverAfterCrashActive(void) { return false; }
float pidItermAccelerator(void) { return 1.0; }
uint8_t getMotorCount(void){ return 4; }