From 39797529fdba0ab22894d2e050e8456cbcef7774 Mon Sep 17 00:00:00 2001 From: Andre Kjellstrup Date: Sat, 9 May 2015 12:50:13 +0200 Subject: [PATCH] GCS_Failsafe: defines for new failsafe option --- ArduPlane/defines.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ArduPlane/defines.h b/ArduPlane/defines.h index cca5ebb8d1..12794b5726 100644 --- a/ArduPlane/defines.h +++ b/ArduPlane/defines.h @@ -30,9 +30,11 @@ enum failsafe_state { enum gcs_failsafe { GCS_FAILSAFE_OFF = 0, // no GCS failsafe GCS_FAILSAFE_HEARTBEAT = 1, // failsafe if we stop receiving heartbeat - GCS_FAILSAFE_HB_RSSI = 2 // failsafe if we stop receiving + GCS_FAILSAFE_HB_RSSI = 2, // failsafe if we stop receiving // heartbeat or if RADIO.remrssi // drops to 0 + GCS_FAILSAFE_HB_AUTO = 3 // failsafe if we stop receiving heartbeat + // while in AUTO mode };