1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 16:25:31 +03:00

Log disarm reason.

This commit is contained in:
Dominic Clifton 2019-12-26 15:02:48 +01:00
parent 6433aaa688
commit 2fead0aedf
16 changed files with 60 additions and 23 deletions

View file

@ -79,7 +79,7 @@ extern "C" {
float getRcDeflection(int axis) { return simulatedRcDeflection[axis]; }
void beeperConfirmationBeeps(uint8_t) { }
bool isLaunchControlActive(void) {return unitLaunchControlActive; }
void disarm(void) { }
void disarm(flightLogDisarmReason_e) { }
float applyFFLimit(int axis, float value, float Kp, float currentPidSetpoint) {
UNUSED(axis);
UNUSED(Kp);