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

GPS Rescue procedure can be aborted by moving sticks, with a configurable delay after recovering rx

This commit is contained in:
Tony Cabello 2019-04-09 06:30:35 +02:00
parent b4286c6ac9
commit d829563179
7 changed files with 36 additions and 12 deletions

View file

@ -127,6 +127,9 @@ flight_failsafe_unittest_SRC := \
$(USER_DIR)/fc/runtime_config.c \
$(USER_DIR)/flight/failsafe.c
flight_failsafe_unittest_DEFINES := \
USE_GPS_RESCUE=
flight_imu_unittest_SRC := \
$(USER_DIR)/common/bitarray.c \

View file

@ -589,6 +589,11 @@ bool isUsingSticksForArming(void)
return isUsingSticksToArm;
}
bool areSticksActive(uint8_t stickPercentLimit) {
UNUSED(stickPercentLimit);
return false;
}
void beeperConfirmationBeeps(uint8_t beepCount) { UNUSED(beepCount); }
bool crashRecoveryModeActive(void) { return false; }