Browse Source

GCS_Failsafe: defines for new failsafe option

mission-4.1.18
Andre Kjellstrup 10 years ago committed by Andrew Tridgell
parent
commit
39797529fd
  1. 4
      ArduPlane/defines.h

4
ArduPlane/defines.h

@ -30,9 +30,11 @@ enum failsafe_state {
enum gcs_failsafe { enum gcs_failsafe {
GCS_FAILSAFE_OFF = 0, // no GCS failsafe GCS_FAILSAFE_OFF = 0, // no GCS failsafe
GCS_FAILSAFE_HEARTBEAT = 1, // failsafe if we stop receiving heartbeat 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 // heartbeat or if RADIO.remrssi
// drops to 0 // drops to 0
GCS_FAILSAFE_HB_AUTO = 3 // failsafe if we stop receiving heartbeat
// while in AUTO mode
}; };

Loading…
Cancel
Save