|
|
|
@ -313,14 +313,13 @@ private:
@@ -313,14 +313,13 @@ private:
|
|
|
|
|
uint8_t system_time_set_unused : 1; // 16 // true if the system time has been set from the GPS
|
|
|
|
|
uint8_t gps_glitching : 1; // 17 // true if GPS glitching is affecting navigation accuracy
|
|
|
|
|
uint8_t using_interlock : 1; // 20 // aux switch motor interlock function is in use
|
|
|
|
|
uint8_t motor_emergency_stop : 1; // 21 // motor estop switch, shuts off motors when enabled
|
|
|
|
|
uint8_t land_repo_active : 1; // 22 // true if the pilot is overriding the landing position
|
|
|
|
|
uint8_t motor_interlock_switch : 1; // 23 // true if pilot is requesting motor interlock enable
|
|
|
|
|
uint8_t in_arming_delay : 1; // 24 // true while we are armed but waiting to spin motors
|
|
|
|
|
uint8_t initialised_params : 1; // 25 // true when the all parameters have been initialised. we cannot send parameters to the GCS until this is done
|
|
|
|
|
uint8_t compass_init_location : 1; // 26 // true when the compass's initial location has been set
|
|
|
|
|
uint8_t unused2 : 1; // 27 // aux switch rc_override is allowed
|
|
|
|
|
uint8_t armed_with_switch : 1; // 28 // we armed using a arming switch
|
|
|
|
|
uint8_t land_repo_active : 1; // 21 // true if the pilot is overriding the landing position
|
|
|
|
|
uint8_t motor_interlock_switch : 1; // 22 // true if pilot is requesting motor interlock enable
|
|
|
|
|
uint8_t in_arming_delay : 1; // 23 // true while we are armed but waiting to spin motors
|
|
|
|
|
uint8_t initialised_params : 1; // 24 // true when the all parameters have been initialised. we cannot send parameters to the GCS until this is done
|
|
|
|
|
uint8_t compass_init_location : 1; // 25 // true when the compass's initial location has been set
|
|
|
|
|
uint8_t unused2 : 1; // 26 // aux switch rc_override is allowed
|
|
|
|
|
uint8_t armed_with_switch : 1; // 27 // we armed using a arming switch
|
|
|
|
|
}; |
|
|
|
|
uint32_t value; |
|
|
|
|
} ap_t; |
|
|
|
@ -613,7 +612,6 @@ private:
@@ -613,7 +612,6 @@ private:
|
|
|
|
|
void set_failsafe_radio(bool b); |
|
|
|
|
void set_failsafe_gcs(bool b); |
|
|
|
|
void update_using_interlock(); |
|
|
|
|
void set_motor_emergency_stop(bool b); |
|
|
|
|
|
|
|
|
|
// ArduCopter.cpp
|
|
|
|
|
void fast_loop(); |
|
|
|
|