2011-03-19 07:20:11 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-01-23 22:04:44 -04:00
|
|
|
|
2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2013-05-20 02:05:50 -03:00
|
|
|
#define ARM_DELAY 20 // called at 10hz so 2 seconds
|
|
|
|
#define DISARM_DELAY 20 // called at 10hz so 2 seconds
|
|
|
|
#define AUTO_TRIM_DELAY 100 // called at 10hz so 10 seconds
|
2015-04-28 11:06:39 -03:00
|
|
|
#define LOST_VEHICLE_DELAY 10 // called at 10hz so 1 second
|
2011-06-16 14:03:26 -03:00
|
|
|
|
2015-11-06 05:30:11 -04:00
|
|
|
static uint32_t auto_disarm_begin;
|
2014-10-09 10:42:47 -03:00
|
|
|
|
2013-05-20 01:03:18 -03:00
|
|
|
// arm_motors_check - checks for pilot input to arm or disarm the copter
|
2011-06-16 14:03:26 -03:00
|
|
|
// called at 10hz
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::arm_motors_check()
|
2011-01-23 22:04:44 -04:00
|
|
|
{
|
2012-08-21 23:19:50 -03:00
|
|
|
static int16_t arming_counter;
|
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// ensure throttle is down
|
2015-05-11 23:24:13 -03:00
|
|
|
if (channel_throttle->control_in > 0) {
|
2012-08-21 23:19:50 -03:00
|
|
|
arming_counter = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-11 23:24:13 -03:00
|
|
|
int16_t tmp = channel_yaw->control_in;
|
2012-08-21 23:19:50 -03:00
|
|
|
|
|
|
|
// full right
|
|
|
|
if (tmp > 4000) {
|
2012-07-14 23:26:17 -03:00
|
|
|
|
2012-12-19 11:06:20 -04:00
|
|
|
// increase the arming counter to a maximum of 1 beyond the auto trim counter
|
|
|
|
if( arming_counter <= AUTO_TRIM_DELAY ) {
|
|
|
|
arming_counter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// arm the motors and configure for flight
|
|
|
|
if (arming_counter == ARM_DELAY && !motors.armed()) {
|
2015-01-30 04:56:22 -04:00
|
|
|
// reset arming counter if arming fail
|
|
|
|
if (!init_arm_motors(false)) {
|
2013-05-20 01:03:18 -03:00
|
|
|
arming_counter = 0;
|
|
|
|
}
|
2012-12-19 11:06:20 -04:00
|
|
|
}
|
2012-07-14 23:26:17 -03:00
|
|
|
|
2012-12-19 11:06:20 -04:00
|
|
|
// arm the motors and configure for flight
|
2013-08-15 09:11:23 -03:00
|
|
|
if (arming_counter == AUTO_TRIM_DELAY && motors.armed() && control_mode == STABILIZE) {
|
2012-12-19 11:06:20 -04:00
|
|
|
auto_trim_counter = 250;
|
2014-10-09 10:42:47 -03:00
|
|
|
// ensure auto-disarm doesn't trigger immediately
|
2015-11-06 05:30:11 -04:00
|
|
|
auto_disarm_begin = millis();
|
2012-08-21 23:19:50 -03:00
|
|
|
}
|
|
|
|
|
2012-12-19 11:06:20 -04:00
|
|
|
// full left
|
2012-08-21 23:19:50 -03:00
|
|
|
}else if (tmp < -4000) {
|
2015-01-21 06:57:02 -04:00
|
|
|
if (!mode_has_manual_throttle(control_mode) && !ap.land_complete) {
|
2014-10-10 06:29:10 -03:00
|
|
|
arming_counter = 0;
|
|
|
|
return;
|
|
|
|
}
|
2012-12-19 11:06:20 -04:00
|
|
|
|
|
|
|
// increase the counter to a maximum of 1 beyond the disarm delay
|
|
|
|
if( arming_counter <= DISARM_DELAY ) {
|
2012-08-21 23:19:50 -03:00
|
|
|
arming_counter++;
|
|
|
|
}
|
|
|
|
|
2012-12-19 11:06:20 -04:00
|
|
|
// disarm the motors
|
|
|
|
if (arming_counter == DISARM_DELAY && motors.armed()) {
|
|
|
|
init_disarm_motors();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Yaw is centered so reset arming counter
|
2012-08-21 23:19:50 -03:00
|
|
|
}else{
|
|
|
|
arming_counter = 0;
|
|
|
|
}
|
2011-01-23 22:04:44 -04:00
|
|
|
}
|
|
|
|
|
2013-11-18 03:13:15 -04:00
|
|
|
// auto_disarm_check - disarms the copter if it has been sitting on the ground in manual mode with throttle low for at least 15 seconds
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::auto_disarm_check()
|
2013-05-20 02:05:50 -03:00
|
|
|
{
|
2015-11-06 05:30:11 -04:00
|
|
|
uint32_t tnow_ms = millis();
|
|
|
|
uint32_t disarm_delay_ms = 1000*constrain_int16(g.disarm_delay, 0, 127);
|
2015-03-13 15:33:19 -03:00
|
|
|
|
2015-08-30 22:44:08 -03:00
|
|
|
// exit immediately if we are already disarmed, or if auto
|
|
|
|
// disarming is disabled
|
2015-11-06 05:30:11 -04:00
|
|
|
if (!motors.armed() || disarm_delay_ms == 0) {
|
|
|
|
auto_disarm_begin = tnow_ms;
|
2013-11-18 03:13:15 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-06 18:36:56 -04:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
// if the rotor is still spinning, don't initiate auto disarm
|
|
|
|
if (motors.rotor_speed_above_critical()) {
|
2015-11-13 20:59:59 -04:00
|
|
|
auto_disarm_begin = tnow_ms;
|
2015-11-06 18:36:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-22 14:56:05 -03:00
|
|
|
// always allow auto disarm if using interlock switch or motors are Emergency Stopped
|
2015-08-14 16:08:03 -03:00
|
|
|
if ((ap.using_interlock && !motors.get_interlock()) || ap.motor_emergency_stop) {
|
2015-08-02 22:17:53 -03:00
|
|
|
#if FRAME_CONFIG != HELI_FRAME
|
2015-04-22 14:56:05 -03:00
|
|
|
// use a shorter delay if using throttle interlock switch or Emergency Stop, because it is less
|
2015-03-13 15:33:19 -03:00
|
|
|
// obvious the copter is armed as the motors will not be spinning
|
2015-11-06 05:30:11 -04:00
|
|
|
disarm_delay_ms /= 2;
|
2015-08-02 22:17:53 -03:00
|
|
|
#endif
|
2015-08-14 16:08:03 -03:00
|
|
|
} else {
|
|
|
|
bool sprung_throttle_stick = (g.throttle_behavior & THR_BEHAVE_FEEDBACK_FROM_MID_STICK) != 0;
|
|
|
|
bool thr_low;
|
|
|
|
if (mode_has_manual_throttle(control_mode) || !sprung_throttle_stick) {
|
|
|
|
thr_low = ap.throttle_zero;
|
2015-03-13 15:33:19 -03:00
|
|
|
} else {
|
2015-08-14 16:08:03 -03:00
|
|
|
float deadband_top = g.rc_3.get_control_mid() + g.throttle_deadzone;
|
|
|
|
thr_low = g.rc_3.control_in <= deadband_top;
|
2015-03-13 15:33:19 -03:00
|
|
|
}
|
|
|
|
|
2015-11-06 05:30:11 -04:00
|
|
|
if (!thr_low || !ap.land_complete) {
|
|
|
|
// reset timer
|
|
|
|
auto_disarm_begin = tnow_ms;
|
2013-05-20 02:05:50 -03:00
|
|
|
}
|
2015-08-14 16:08:03 -03:00
|
|
|
}
|
|
|
|
|
2015-11-06 05:30:11 -04:00
|
|
|
// disarm once timer expires
|
|
|
|
if ((tnow_ms-auto_disarm_begin) >= disarm_delay_ms) {
|
2015-08-14 16:08:03 -03:00
|
|
|
init_disarm_motors();
|
2015-11-06 05:30:11 -04:00
|
|
|
auto_disarm_begin = tnow_ms;
|
2013-05-20 02:05:50 -03:00
|
|
|
}
|
|
|
|
}
|
2011-01-23 22:04:44 -04:00
|
|
|
|
2013-05-20 02:05:50 -03:00
|
|
|
// init_arm_motors - performs arming process including initialisation of barometer and gyros
|
2015-01-30 04:56:22 -04:00
|
|
|
// returns false if arming failed because of pre-arm checks, arming checks or a gyro calibration failure
|
2015-05-29 23:12:49 -03:00
|
|
|
bool Copter::init_arm_motors(bool arming_from_gcs)
|
2011-11-05 01:41:51 -03:00
|
|
|
{
|
2015-02-02 09:29:17 -04:00
|
|
|
static bool in_arm_motors = false;
|
|
|
|
|
|
|
|
// exit immediately if already in this function
|
|
|
|
if (in_arm_motors) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
in_arm_motors = true;
|
2012-01-03 14:24:51 -04:00
|
|
|
|
2015-01-30 04:56:22 -04:00
|
|
|
// run pre-arm-checks and display failures
|
|
|
|
if(!pre_arm_checks(true) || !arm_checks(true, arming_from_gcs)) {
|
2015-02-02 16:58:37 -04:00
|
|
|
AP_Notify::events.arming_failed = true;
|
2015-02-02 09:29:17 -04:00
|
|
|
in_arm_motors = false;
|
2015-01-30 04:56:22 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-03 02:49:01 -03:00
|
|
|
// disable cpu failsafe because initialising everything takes a while
|
2012-10-09 00:30:17 -03:00
|
|
|
failsafe_disable();
|
2013-05-19 10:55:40 -03:00
|
|
|
|
2014-09-17 07:28:02 -03:00
|
|
|
// reset battery failsafe
|
|
|
|
set_failsafe_battery(false);
|
|
|
|
|
2014-07-25 01:07:49 -03:00
|
|
|
// notify that arming will occur (we do this early to give plenty of warning)
|
|
|
|
AP_Notify::flags.armed = true;
|
|
|
|
// call update_notify a few times to ensure the message gets out
|
|
|
|
for (uint8_t i=0; i<=10; i++) {
|
|
|
|
update_notify();
|
|
|
|
}
|
|
|
|
|
2015-05-04 03:18:46 -03:00
|
|
|
#if HIL_MODE != HIL_MODE_DISABLED || CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2015-11-04 13:32:01 -04:00
|
|
|
gcs_send_text(MAV_SEVERITY_INFO, "ARMING MOTORS");
|
2012-08-21 23:19:50 -03:00
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// Remember Orientation
|
|
|
|
// --------------------
|
|
|
|
init_simple_bearing();
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2013-05-30 13:11:47 -03:00
|
|
|
initial_armed_bearing = ahrs.yaw_sensor;
|
|
|
|
|
2015-06-24 03:54:26 -03:00
|
|
|
if (ap.home_state == HOME_UNSET) {
|
|
|
|
// Reset EKF altitude if home hasn't been set yet (we use EKF altitude as substitute for alt above home)
|
2015-09-23 04:47:11 -03:00
|
|
|
ahrs.resetHeightDatum();
|
2015-07-05 05:38:04 -03:00
|
|
|
Log_Write_Event(DATA_EKF_ALT_RESET);
|
2015-06-24 03:54:26 -03:00
|
|
|
} else if (ap.home_state == HOME_SET_NOT_LOCKED) {
|
|
|
|
// Reset home position if it has already been set before (but not locked)
|
2015-02-09 07:27:12 -04:00
|
|
|
set_home_to_current_location();
|
2013-11-01 11:54:32 -03:00
|
|
|
}
|
2015-02-09 07:27:12 -04:00
|
|
|
calc_distance_and_bearing();
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2013-05-05 04:55:06 -03:00
|
|
|
// enable gps velocity based centrefugal force compensation
|
2013-05-06 01:32:11 -03:00
|
|
|
ahrs.set_correct_centrifugal(true);
|
2015-01-28 19:18:20 -04:00
|
|
|
hal.util->set_soft_armed(true);
|
2013-05-05 04:55:06 -03:00
|
|
|
|
2013-09-11 05:05:25 -03:00
|
|
|
#if SPRAYER == ENABLED
|
|
|
|
// turn off sprayer's test if on
|
|
|
|
sprayer.test_pump(false);
|
|
|
|
#endif
|
|
|
|
|
2014-09-04 00:37:26 -03:00
|
|
|
// short delay to allow reading of rc inputs
|
|
|
|
delay(30);
|
|
|
|
|
2013-07-16 00:43:26 -03:00
|
|
|
// enable output to motors
|
2015-04-22 15:59:34 -03:00
|
|
|
enable_motor_output();
|
2013-07-16 00:43:26 -03:00
|
|
|
|
2012-10-09 00:30:17 -03:00
|
|
|
// finally actually arm the motors
|
|
|
|
motors.armed(true);
|
|
|
|
|
2013-05-13 06:07:28 -03:00
|
|
|
// log arming to dataflash
|
|
|
|
Log_Write_Event(DATA_ARMED);
|
|
|
|
|
2014-07-28 23:43:47 -03:00
|
|
|
// log flight mode in case it was changed while vehicle was disarmed
|
2014-12-22 16:11:31 -04:00
|
|
|
DataFlash.Log_Write_Mode(control_mode);
|
2014-07-28 23:43:47 -03:00
|
|
|
|
2012-10-09 00:30:17 -03:00
|
|
|
// reenable failsafe
|
|
|
|
failsafe_enable();
|
2014-10-29 03:19:10 -03:00
|
|
|
|
2015-02-09 10:07:18 -04:00
|
|
|
// perf monitor ignores delay due to arming
|
|
|
|
perf_ignore_this_loop();
|
|
|
|
|
2015-02-02 09:29:17 -04:00
|
|
|
// flag exiting this function
|
|
|
|
in_arm_motors = false;
|
|
|
|
|
2014-10-29 03:19:10 -03:00
|
|
|
// return success
|
|
|
|
return true;
|
2011-11-05 01:41:51 -03:00
|
|
|
}
|
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// perform pre-arm checks and set ap.pre_arm_check flag
|
2015-01-21 08:43:06 -04:00
|
|
|
// return true if the checks pass successfully
|
2015-05-29 23:12:49 -03:00
|
|
|
bool Copter::pre_arm_checks(bool display_failure)
|
2013-04-22 12:01:20 -03:00
|
|
|
{
|
2014-12-26 08:52:04 -04:00
|
|
|
// exit immediately if already armed
|
|
|
|
if (motors.armed()) {
|
2015-01-21 08:43:06 -04:00
|
|
|
return true;
|
2014-12-26 08:52:04 -04:00
|
|
|
}
|
|
|
|
|
2015-04-22 14:56:05 -03:00
|
|
|
// check if motor interlock and Emergency Stop aux switches are used
|
2015-04-22 12:42:01 -03:00
|
|
|
// at the same time. This cannot be allowed.
|
|
|
|
if (check_if_auxsw_mode_used(AUXSW_MOTOR_INTERLOCK) && check_if_auxsw_mode_used(AUXSW_MOTOR_ESTOP)){
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Interlock/E-Stop Conflict");
|
2015-04-22 12:42:01 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-12 21:44:46 -03:00
|
|
|
// check if motor interlock aux switch is in use
|
|
|
|
// if it is, switch needs to be in disabled position to arm
|
|
|
|
// otherwise exit immediately. This check to be repeated,
|
|
|
|
// as state can change at any time.
|
|
|
|
set_using_interlock(check_if_auxsw_mode_used(AUXSW_MOTOR_INTERLOCK));
|
2015-04-30 06:31:31 -03:00
|
|
|
if (ap.using_interlock && motors.get_interlock()){
|
2015-03-12 21:44:46 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Motor Interlock Enabled");
|
2015-03-12 21:44:46 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:01:20 -03:00
|
|
|
// exit immediately if we've already successfully performed the pre-arm check
|
2013-11-15 04:12:31 -04:00
|
|
|
if (ap.pre_arm_check) {
|
2015-01-21 08:43:06 -04:00
|
|
|
// run gps checks because results may change and affect LED colour
|
|
|
|
// no need to display failures because arm_checks will do that if the pilot tries to arm
|
|
|
|
pre_arm_gps_checks(false);
|
|
|
|
return true;
|
2013-04-22 12:01:20 -03:00
|
|
|
}
|
|
|
|
|
2013-05-20 02:48:04 -03:00
|
|
|
// succeed if pre arm checks are disabled
|
2013-11-25 04:23:39 -04:00
|
|
|
if(g.arming_check == ARMING_CHECK_NONE) {
|
2013-08-14 00:07:35 -03:00
|
|
|
set_pre_arm_check(true);
|
2013-11-15 04:12:31 -04:00
|
|
|
set_pre_arm_rc_check(true);
|
2015-01-21 08:43:06 -04:00
|
|
|
return true;
|
2013-05-20 02:48:04 -03:00
|
|
|
}
|
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// pre-arm rc checks a prerequisite
|
|
|
|
pre_arm_rc_checks();
|
|
|
|
if(!ap.pre_arm_rc_check) {
|
2013-05-20 01:03:18 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: RC not calibrated");
|
2013-05-20 01:03:18 -03:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-04-22 12:01:20 -03:00
|
|
|
}
|
2013-11-15 04:12:31 -04:00
|
|
|
// check Baro
|
2013-11-25 04:23:39 -04:00
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_BARO)) {
|
2013-11-15 04:12:31 -04:00
|
|
|
// barometer health check
|
2015-01-06 21:45:50 -04:00
|
|
|
if(!barometer.all_healthy()) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Barometer not healthy");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-07-25 19:39:05 -03:00
|
|
|
}
|
2015-04-09 21:52:48 -03:00
|
|
|
// Check baro & inav alt are within 1m if EKF is operating in an absolute position mode.
|
|
|
|
// Do not check if intending to operate in a ground relative height mode as EKF will output a ground relative height
|
|
|
|
// that may differ from the baro height due to baro drift.
|
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
|
|
|
bool using_baro_ref = (!filt_status.flags.pred_horiz_pos_rel && filt_status.flags.pred_horiz_pos_abs);
|
|
|
|
if (using_baro_ref) {
|
2015-05-08 15:40:08 -03:00
|
|
|
if (fabsf(inertial_nav.get_altitude() - baro_alt) > PREARM_MAX_ALT_DISPARITY_CM) {
|
2015-04-09 21:52:48 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Altitude disparity");
|
2015-04-09 21:52:48 -03:00
|
|
|
}
|
|
|
|
return false;
|
2014-01-17 04:21:42 -04:00
|
|
|
}
|
|
|
|
}
|
2013-07-25 19:39:05 -03:00
|
|
|
}
|
2013-04-22 12:01:20 -03:00
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check Compass
|
2013-11-25 04:23:39 -04:00
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_COMPASS)) {
|
2014-07-07 09:31:05 -03:00
|
|
|
// check the primary compass is healthy
|
2015-04-09 21:30:14 -03:00
|
|
|
if(!compass.healthy()) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Compass not healthy");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-20 01:03:18 -03:00
|
|
|
}
|
2013-04-22 12:01:20 -03:00
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check compass learning is on or offsets have been set
|
2014-08-26 08:50:53 -03:00
|
|
|
if(!compass.configured()) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Compass not calibrated");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-11-14 10:12:53 -04:00
|
|
|
}
|
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check for unreasonable compass offsets
|
2015-09-28 16:57:03 -03:00
|
|
|
Vector3f offsets = compass.get_offsets();
|
2014-10-03 01:59:31 -03:00
|
|
|
if(offsets.length() > COMPASS_OFFSETS_MAX) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Compass offsets too high");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-20 01:03:18 -03:00
|
|
|
}
|
2013-04-27 11:50:40 -03:00
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check for unreasonable mag field length
|
2015-09-28 16:57:03 -03:00
|
|
|
float mag_field = compass.get_field().length();
|
2015-05-03 03:03:28 -03:00
|
|
|
if (mag_field > COMPASS_MAGFIELD_EXPECTED*1.65f || mag_field < COMPASS_MAGFIELD_EXPECTED*0.35f) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Check mag field");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-20 02:19:47 -03:00
|
|
|
}
|
2014-08-26 10:31:43 -03:00
|
|
|
|
|
|
|
// check all compasses point in roughly same direction
|
2015-09-15 03:58:43 -03:00
|
|
|
if (!compass.consistent()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: inconsistent compasses");
|
2014-08-26 10:31:43 -03:00
|
|
|
}
|
2015-09-15 03:58:43 -03:00
|
|
|
return false;
|
2014-08-26 10:31:43 -03:00
|
|
|
}
|
|
|
|
|
2013-05-20 02:19:47 -03:00
|
|
|
}
|
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check GPS
|
2014-12-24 09:25:53 -04:00
|
|
|
if (!pre_arm_gps_checks(display_failure)) {
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2014-12-24 09:25:53 -04:00
|
|
|
}
|
2013-05-20 02:19:47 -03:00
|
|
|
|
2015-02-11 23:03:54 -04:00
|
|
|
#if AC_FENCE == ENABLED
|
2014-12-24 09:25:53 -04:00
|
|
|
// check fence is initialised
|
|
|
|
if(!fence.pre_arm_check()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: check fence");
|
2013-05-31 00:23:19 -03:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-31 00:23:19 -03:00
|
|
|
}
|
2015-02-11 23:03:54 -04:00
|
|
|
#endif
|
2013-05-31 00:23:19 -03:00
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check INS
|
2013-11-25 04:23:39 -04:00
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_INS)) {
|
2013-11-15 04:12:31 -04:00
|
|
|
// check accelerometers have been calibrated
|
2015-05-12 03:19:01 -03:00
|
|
|
if(!ins.accel_calibrated_ok_all()) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Accels not calibrated");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-25 00:24:47 -03:00
|
|
|
}
|
|
|
|
|
2014-09-01 08:21:19 -03:00
|
|
|
// check accels are healthy
|
|
|
|
if(!ins.get_accel_health_all()) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Accelerometers not healthy");
|
2014-09-01 08:21:19 -03:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2014-09-01 08:21:19 -03:00
|
|
|
}
|
|
|
|
|
2014-09-03 01:50:41 -03:00
|
|
|
// check all accelerometers point in roughly same direction
|
|
|
|
if (ins.get_accel_count() > 1) {
|
|
|
|
const Vector3f &prime_accel_vec = ins.get_accel();
|
|
|
|
for(uint8_t i=0; i<ins.get_accel_count(); i++) {
|
|
|
|
// get next accel vector
|
|
|
|
const Vector3f &accel_vec = ins.get_accel(i);
|
|
|
|
Vector3f vec_diff = accel_vec - prime_accel_vec;
|
2015-05-08 07:06:21 -03:00
|
|
|
float threshold = PREARM_MAX_ACCEL_VECTOR_DIFF;
|
|
|
|
if (i >= 2) {
|
|
|
|
/*
|
|
|
|
for boards with 3 IMUs we only use the first two
|
|
|
|
in the EKF. Allow for larger accel discrepancy
|
|
|
|
for IMU3 as it may be running at a different temperature
|
|
|
|
*/
|
|
|
|
threshold *= 2;
|
|
|
|
}
|
|
|
|
if (vec_diff.length() > threshold) {
|
2014-09-03 01:50:41 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: inconsistent Accelerometers");
|
2014-09-03 01:50:41 -03:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2014-09-03 01:50:41 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-01 08:21:19 -03:00
|
|
|
// check gyros are healthy
|
|
|
|
if(!ins.get_gyro_health_all()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Gyros not healthy");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-20 01:03:18 -03:00
|
|
|
}
|
2014-09-03 10:00:09 -03:00
|
|
|
|
|
|
|
// check all gyros are consistent
|
|
|
|
if (ins.get_gyro_count() > 1) {
|
|
|
|
for(uint8_t i=0; i<ins.get_gyro_count(); i++) {
|
|
|
|
// get rotation rate difference between gyro #i and primary gyro
|
|
|
|
Vector3f vec_diff = ins.get_gyro(i) - ins.get_gyro();
|
|
|
|
if (vec_diff.length() > PREARM_MAX_GYRO_VECTOR_DIFF) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: inconsistent Gyros");
|
2014-09-03 10:00:09 -03:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2014-09-03 10:00:09 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-17 05:24:26 -03:00
|
|
|
|
|
|
|
// get ekf attitude (if bad, it's usually the gyro biases)
|
|
|
|
if (!pre_arm_ekf_attitude_check()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: gyros still settling");
|
2015-09-17 05:24:26 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-26 06:51:07 -03:00
|
|
|
}
|
2014-04-07 10:41:52 -03:00
|
|
|
#if CONFIG_HAL_BOARD != HAL_BOARD_VRBRAIN
|
2013-09-12 00:43:06 -03:00
|
|
|
#ifndef CONFIG_ARCH_BOARD_PX4FMU_V1
|
2013-05-28 09:50:31 -03:00
|
|
|
// check board voltage
|
2013-11-25 04:23:39 -04:00
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_VOLTAGE)) {
|
2014-02-13 02:12:10 -04:00
|
|
|
if(hal.analogin->board_voltage() < BOARD_VOLTAGE_MIN || hal.analogin->board_voltage() > BOARD_VOLTAGE_MAX) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Check Board Voltage");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-05-28 09:50:31 -03:00
|
|
|
}
|
|
|
|
}
|
2014-04-07 10:41:52 -03:00
|
|
|
#endif
|
2013-05-30 23:27:54 -03:00
|
|
|
#endif
|
2013-05-28 09:50:31 -03:00
|
|
|
|
2015-07-01 10:52:44 -03:00
|
|
|
// check battery voltage
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_VOLTAGE)) {
|
|
|
|
if (failsafe.battery || (!ap.usb_connected && battery.exhausted(g.fs_batt_voltage, g.fs_batt_mah))) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Check Battery");
|
2015-07-01 10:52:44 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// check various parameter values
|
2013-11-25 04:23:39 -04:00
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_PARAMETERS)) {
|
2013-11-15 04:12:31 -04:00
|
|
|
|
|
|
|
// ensure ch7 and ch8 have different functions
|
2015-03-10 22:20:07 -03:00
|
|
|
if (check_duplicate_auxsw()) {
|
2013-07-13 08:25:34 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Duplicate Aux Switch Options");
|
2013-07-13 08:25:34 -03:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-07-13 08:25:34 -03:00
|
|
|
}
|
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// failsafe parameter checks
|
|
|
|
if (g.failsafe_throttle) {
|
|
|
|
// check throttle min is above throttle failsafe trigger and that the trigger is above ppm encoder's loss-of-signal value of 900
|
2015-05-11 23:24:13 -03:00
|
|
|
if (channel_throttle->radio_min <= g.failsafe_throttle_value+10 || g.failsafe_throttle_value < 910) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Check FS_THR_VALUE");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2013-08-11 00:51:08 -03:00
|
|
|
}
|
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// lean angle parameter check
|
2014-10-18 02:10:32 -03:00
|
|
|
if (aparm.angle_max < 1000 || aparm.angle_max > 8000) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Check ANGLE_MAX");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-10-05 10:21:53 -03:00
|
|
|
}
|
2013-11-18 03:38:05 -04:00
|
|
|
|
|
|
|
// acro balance parameter check
|
2014-02-14 03:08:59 -04:00
|
|
|
if ((g.acro_balance_roll > g.p_stabilize_roll.kP()) || (g.acro_balance_pitch > g.p_stabilize_pitch.kP())) {
|
2013-11-18 03:38:05 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: ACRO_BAL_ROLL/PITCH");
|
2013-11-18 03:38:05 -04:00
|
|
|
}
|
2015-01-21 08:43:06 -04:00
|
|
|
return false;
|
2013-11-18 03:38:05 -04:00
|
|
|
}
|
2015-04-13 01:11:28 -03:00
|
|
|
|
2015-06-16 05:58:22 -03:00
|
|
|
#if CONFIG_SONAR == ENABLED && OPTFLOW == ENABLED
|
|
|
|
// check range finder if optflow enabled
|
|
|
|
if (optflow.enabled() && !sonar.pre_arm_check()) {
|
2015-04-13 01:11:28 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: check range finder");
|
2015-04-13 01:11:28 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2015-07-08 14:15:20 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
// check helicopter parameters
|
2015-09-13 23:03:12 -03:00
|
|
|
if (!motors.parameter_check(display_failure)) {
|
2015-07-08 14:15:20 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif // HELI_FRAME
|
2013-09-09 02:03:40 -03:00
|
|
|
}
|
|
|
|
|
2015-07-01 04:21:53 -03:00
|
|
|
// check throttle is above failsafe throttle
|
|
|
|
// this is near the bottom to allow other failures to be displayed before checking pilot throttle
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_RC)) {
|
|
|
|
if (g.failsafe_throttle != FS_THR_DISABLED && channel_throttle->radio_in < g.failsafe_throttle_value) {
|
|
|
|
if (display_failure) {
|
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Collective below Failsafe");
|
2015-07-01 04:21:53 -03:00
|
|
|
#else
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Throttle below Failsafe");
|
2015-07-01 04:21:53 -03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-22 12:01:20 -03:00
|
|
|
// if we've gotten this far then pre arm checks have completed
|
2013-08-14 00:07:35 -03:00
|
|
|
set_pre_arm_check(true);
|
2015-01-21 08:43:06 -04:00
|
|
|
return true;
|
2013-04-22 12:01:20 -03:00
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// perform pre_arm_rc_checks checks and set ap.pre_arm_rc_check flag
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::pre_arm_rc_checks()
|
2013-05-16 04:32:00 -03:00
|
|
|
{
|
|
|
|
// exit immediately if we've already successfully performed the pre-arm rc check
|
|
|
|
if( ap.pre_arm_rc_check ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-15 04:12:31 -04:00
|
|
|
// set rc-checks to success if RC checks are disabled
|
2013-11-25 04:23:39 -04:00
|
|
|
if ((g.arming_check != ARMING_CHECK_ALL) && !(g.arming_check & ARMING_CHECK_RC)) {
|
2013-11-15 04:12:31 -04:00
|
|
|
set_pre_arm_rc_check(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// check if radio has been calibrated
|
2015-10-22 16:46:32 -03:00
|
|
|
if(!channel_throttle->radio_min.configured() && !channel_throttle->radio_max.configured()) {
|
2013-05-16 04:32:00 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-13 09:38:03 -03:00
|
|
|
// check channels 1 & 2 have min <= 1300 and max >= 1700
|
2015-05-11 23:24:13 -03:00
|
|
|
if (channel_roll->radio_min > 1300 || channel_roll->radio_max < 1700 || channel_pitch->radio_min > 1300 || channel_pitch->radio_max < 1700) {
|
2013-07-13 09:38:03 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check channels 3 & 4 have min <= 1300 and max >= 1700
|
2015-05-11 23:24:13 -03:00
|
|
|
if (channel_throttle->radio_min > 1300 || channel_throttle->radio_max < 1700 || channel_yaw->radio_min > 1300 || channel_yaw->radio_max < 1700) {
|
2013-05-16 04:32:00 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-04 19:39:12 -04:00
|
|
|
// check channels 1 & 2 have trim >= 1300 and <= 1700
|
2015-05-11 23:24:13 -03:00
|
|
|
if (channel_roll->radio_trim < 1300 || channel_roll->radio_trim > 1700 || channel_pitch->radio_trim < 1300 || channel_pitch->radio_trim > 1700) {
|
2015-02-04 19:39:12 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-06 04:55:28 -04:00
|
|
|
// check channel 4 has trim >= 1300 and <= 1700
|
2015-05-11 23:24:13 -03:00
|
|
|
if (channel_yaw->radio_trim < 1300 || channel_yaw->radio_trim > 1700) {
|
2015-02-04 19:39:12 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// if we've gotten this far rc is ok
|
2013-11-15 04:12:31 -04:00
|
|
|
set_pre_arm_rc_check(true);
|
2013-05-16 04:32:00 -03:00
|
|
|
}
|
|
|
|
|
2013-10-20 09:56:00 -03:00
|
|
|
// performs pre_arm gps related checks and returns true if passed
|
2015-05-29 23:12:49 -03:00
|
|
|
bool Copter::pre_arm_gps_checks(bool display_failure)
|
2013-10-20 09:56:00 -03:00
|
|
|
{
|
2015-04-07 02:53:57 -03:00
|
|
|
// always check if inertial nav has started and is ready
|
2015-10-17 03:24:03 -03:00
|
|
|
if(!ahrs.healthy()) {
|
2015-04-07 02:53:57 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Waiting for Nav Checks");
|
2015-04-07 02:53:57 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-24 09:25:53 -04:00
|
|
|
// check if flight mode requires GPS
|
|
|
|
bool gps_required = mode_requires_GPS(control_mode);
|
|
|
|
|
|
|
|
#if AC_FENCE == ENABLED
|
|
|
|
// if circular fence is enabled we need GPS
|
|
|
|
if ((fence.get_enabled_fences() & AC_FENCE_TYPE_CIRCLE) != 0) {
|
|
|
|
gps_required = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// return true if GPS is not required
|
|
|
|
if (!gps_required) {
|
|
|
|
AP_Notify::flags.pre_arm_gps_check = true;
|
|
|
|
return true;
|
|
|
|
}
|
2013-10-20 09:56:00 -03:00
|
|
|
|
2014-02-26 20:56:10 -04:00
|
|
|
// ensure GPS is ok
|
2015-01-02 07:43:50 -04:00
|
|
|
if (!position_ok()) {
|
2014-02-26 20:56:10 -04:00
|
|
|
if (display_failure) {
|
2015-09-08 02:51:00 -03:00
|
|
|
const char *reason = ahrs.prearm_failure_reason();
|
|
|
|
if (reason) {
|
2015-10-24 18:45:41 -03:00
|
|
|
GCS_MAVLINK::send_statustext_all(MAV_SEVERITY_CRITICAL, "PreArm: %s", reason);
|
2015-09-08 02:51:00 -03:00
|
|
|
} else {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: Need 3D Fix");
|
2015-09-08 02:51:00 -03:00
|
|
|
}
|
2014-02-26 20:56:10 -04:00
|
|
|
}
|
2014-12-24 09:25:53 -04:00
|
|
|
AP_Notify::flags.pre_arm_gps_check = false;
|
2014-02-26 20:56:10 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-26 01:57:54 -03:00
|
|
|
// check EKF compass variance is below failsafe threshold
|
|
|
|
float vel_variance, pos_variance, hgt_variance, tas_variance;
|
|
|
|
Vector3f mag_variance;
|
|
|
|
Vector2f offset;
|
2015-10-17 02:57:12 -03:00
|
|
|
ahrs.get_variances(vel_variance, pos_variance, hgt_variance, mag_variance, tas_variance, offset);
|
2015-08-26 01:57:54 -03:00
|
|
|
if (mag_variance.length() >= g.fs_ekf_thresh) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: EKF compass variance");
|
2015-08-26 01:57:54 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-02-09 08:35:34 -04:00
|
|
|
// check home and EKF origin are not too far
|
|
|
|
if (far_from_EKF_origin(ahrs.get_home())) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: EKF-home variance");
|
2015-02-09 08:35:34 -04:00
|
|
|
}
|
|
|
|
AP_Notify::flags.pre_arm_gps_check = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:54:14 -03:00
|
|
|
// return true immediately if gps check is disabled
|
|
|
|
if (!(g.arming_check == ARMING_CHECK_ALL || g.arming_check & ARMING_CHECK_GPS)) {
|
|
|
|
AP_Notify::flags.pre_arm_gps_check = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-25 14:56:47 -04:00
|
|
|
// warn about hdop separately - to prevent user confusion with no gps lock
|
2014-03-31 04:07:46 -03:00
|
|
|
if (gps.get_hdop() > g.gps_hdop_good) {
|
2013-12-25 14:56:47 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"PreArm: High GPS HDOP");
|
2013-12-25 14:56:47 -04:00
|
|
|
}
|
2014-12-24 09:25:53 -04:00
|
|
|
AP_Notify::flags.pre_arm_gps_check = false;
|
2013-12-25 14:56:47 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-20 09:56:00 -03:00
|
|
|
// if we got here all must be ok
|
2014-12-24 09:25:53 -04:00
|
|
|
AP_Notify::flags.pre_arm_gps_check = true;
|
2013-10-20 09:56:00 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-09-17 05:24:26 -03:00
|
|
|
// check ekf attitude is acceptable
|
|
|
|
bool Copter::pre_arm_ekf_attitude_check()
|
|
|
|
{
|
|
|
|
// get ekf filter status
|
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
|
|
|
|
|
|
|
return filt_status.flags.attitude;
|
|
|
|
}
|
|
|
|
|
2013-09-09 02:03:40 -03:00
|
|
|
// arm_checks - perform final checks before arming
|
2014-10-10 09:31:38 -03:00
|
|
|
// always called just before arming. Return true if ok to arm
|
|
|
|
// has side-effect that logging is started
|
2015-05-29 23:12:49 -03:00
|
|
|
bool Copter::arm_checks(bool display_failure, bool arming_from_gcs)
|
2013-09-09 02:03:40 -03:00
|
|
|
{
|
2014-10-10 09:31:38 -03:00
|
|
|
#if LOGGING_ENABLED == ENABLED
|
|
|
|
// start dataflash
|
|
|
|
start_logging();
|
|
|
|
#endif
|
|
|
|
|
2015-07-29 00:19:18 -03:00
|
|
|
// check accels and gyro are healthy
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_INS)) {
|
|
|
|
if(!ins.get_accel_health_all()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Accelerometers not healthy");
|
2015-07-29 00:19:18 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!ins.get_gyro_health_all()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Gyros not healthy");
|
2015-07-29 00:19:18 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-17 05:24:26 -03:00
|
|
|
// get ekf attitude (if bad, it's usually the gyro biases)
|
|
|
|
if (!pre_arm_ekf_attitude_check()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: gyros still settling");
|
2015-09-17 05:24:26 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2015-07-29 00:19:18 -03:00
|
|
|
}
|
|
|
|
|
2015-04-07 02:53:57 -03:00
|
|
|
// always check if inertial nav has started and is ready
|
|
|
|
if(!ahrs.healthy()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Waiting for Nav Checks");
|
2015-04-07 02:53:57 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-09 22:43:43 -03:00
|
|
|
if(compass.is_calibrating()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Compass calibration running");
|
2015-03-09 22:43:43 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-10-10 06:29:10 -03:00
|
|
|
// always check if the current mode allows arming
|
2014-10-11 04:05:32 -03:00
|
|
|
if (!mode_allows_arming(control_mode, arming_from_gcs)) {
|
2014-10-10 06:29:10 -03:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Mode not armable");
|
2014-10-10 06:29:10 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-26 00:54:14 -03:00
|
|
|
// always check gps
|
|
|
|
if (!pre_arm_gps_checks(display_failure)) {
|
2015-09-11 00:43:54 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we are using motor interlock switch and it's enabled, fail to arm
|
|
|
|
if (ap.using_interlock && motors.get_interlock()){
|
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Motor Interlock Enabled");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we are not using Emergency Stop switch option, force Estop false to ensure motors
|
|
|
|
// can run normally
|
|
|
|
if (!check_if_auxsw_mode_used(AUXSW_MOTOR_ESTOP)){
|
|
|
|
set_motor_emergency_stop(false);
|
|
|
|
// if we are using motor Estop switch, it must not be in Estop position
|
|
|
|
} else if (check_if_auxsw_mode_used(AUXSW_MOTOR_ESTOP) && ap.motor_emergency_stop){
|
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Motor Emergency Stopped");
|
2015-08-26 00:54:14 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-09 02:03:40 -03:00
|
|
|
// succeed if arming checks are disabled
|
2013-11-25 04:23:39 -04:00
|
|
|
if (g.arming_check == ARMING_CHECK_NONE) {
|
2013-09-09 02:03:40 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-29 04:17:10 -03:00
|
|
|
// baro checks
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_BARO)) {
|
|
|
|
// baro health check
|
|
|
|
if (!barometer.all_healthy()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Barometer not healthy");
|
2015-07-29 04:17:10 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Check baro & inav alt are within 1m if EKF is operating in an absolute position mode.
|
|
|
|
// Do not check if intending to operate in a ground relative height mode as EKF will output a ground relative height
|
|
|
|
// that may differ from the baro height due to baro drift.
|
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
|
|
|
bool using_baro_ref = (!filt_status.flags.pred_horiz_pos_rel && filt_status.flags.pred_horiz_pos_abs);
|
|
|
|
if (using_baro_ref && (fabsf(inertial_nav.get_altitude() - baro_alt) > PREARM_MAX_ALT_DISPARITY_CM)) {
|
2014-01-17 04:21:42 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Altitude disparity");
|
2014-01-17 04:21:42 -04:00
|
|
|
}
|
2015-04-09 21:52:48 -03:00
|
|
|
return false;
|
2014-01-17 04:21:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-08 03:20:47 -03:00
|
|
|
#if AC_FENCE == ENABLED
|
|
|
|
// check vehicle is within fence
|
|
|
|
if(!fence.pre_arm_check()) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: check fence");
|
2015-07-08 03:20:47 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-21 07:32:18 -04:00
|
|
|
// check lean angle
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_INS)) {
|
2015-04-22 21:06:23 -03:00
|
|
|
if (degrees(acosf(ahrs.cos_roll()*ahrs.cos_pitch()))*100.0f > aparm.angle_max) {
|
2013-11-15 04:12:31 -04:00
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Leaning");
|
2013-11-15 04:12:31 -04:00
|
|
|
}
|
|
|
|
return false;
|
2013-09-09 02:03:40 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-01 10:52:44 -03:00
|
|
|
// check battery voltage
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_VOLTAGE)) {
|
|
|
|
if (failsafe.battery || (!ap.usb_connected && battery.exhausted(g.fs_batt_voltage, g.fs_batt_mah))) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Check Battery");
|
2015-07-01 10:52:44 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-21 07:32:18 -04:00
|
|
|
// check throttle
|
|
|
|
if ((g.arming_check == ARMING_CHECK_ALL) || (g.arming_check & ARMING_CHECK_RC)) {
|
|
|
|
// check throttle is not too low - must be above failsafe throttle
|
2015-05-11 23:24:13 -03:00
|
|
|
if (g.failsafe_throttle != FS_THR_DISABLED && channel_throttle->radio_in < g.failsafe_throttle_value) {
|
2014-01-17 04:31:28 -04:00
|
|
|
if (display_failure) {
|
2015-05-28 16:41:28 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Collective below Failsafe");
|
2015-05-28 16:41:28 -03:00
|
|
|
#else
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Throttle below Failsafe");
|
2015-05-28 16:41:28 -03:00
|
|
|
#endif
|
2014-01-17 04:31:28 -04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2015-01-21 07:32:18 -04:00
|
|
|
|
|
|
|
// check throttle is not too high - skips checks if arming from GCS in Guided
|
|
|
|
if (!(arming_from_gcs && control_mode == GUIDED)) {
|
|
|
|
// above top of deadband is too always high
|
2015-05-19 10:38:57 -03:00
|
|
|
if (channel_throttle->control_in > get_takeoff_trigger_throttle()) {
|
2015-01-21 07:32:18 -04:00
|
|
|
if (display_failure) {
|
2015-05-28 16:41:28 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Collective too high");
|
2015-05-28 16:41:28 -03:00
|
|
|
#else
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Throttle too high");
|
2015-05-28 16:41:28 -03:00
|
|
|
#endif
|
2015-01-21 07:32:18 -04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// in manual modes throttle must be at zero
|
2015-05-19 10:38:57 -03:00
|
|
|
if ((mode_has_manual_throttle(control_mode) || control_mode == DRIFT) && channel_throttle->control_in > 0) {
|
2015-01-21 07:32:18 -04:00
|
|
|
if (display_failure) {
|
2015-05-28 16:41:28 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Collective too high");
|
2015-05-28 16:41:28 -03:00
|
|
|
#else
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Throttle too high");
|
2015-05-28 16:41:28 -03:00
|
|
|
#endif
|
2015-01-21 07:32:18 -04:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-01-17 04:31:28 -04:00
|
|
|
}
|
|
|
|
|
2013-10-05 10:21:53 -03:00
|
|
|
// check if safety switch has been pushed
|
|
|
|
if (hal.util->safety_switch_state() == AP_HAL::Util::SAFETY_DISARMED) {
|
|
|
|
if (display_failure) {
|
2015-10-24 19:36:35 -03:00
|
|
|
gcs_send_text(MAV_SEVERITY_CRITICAL,"Arm: Safety Switch");
|
2013-10-05 10:21:53 -03:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-09 02:03:40 -03:00
|
|
|
// if we've gotten this far all is ok
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-14 00:14:51 -04:00
|
|
|
// init_disarm_motors - disarm motors
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::init_disarm_motors()
|
2011-11-05 01:41:51 -03:00
|
|
|
{
|
2013-11-14 00:14:51 -04:00
|
|
|
// return immediately if we are already disarmed
|
|
|
|
if (!motors.armed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-04 03:18:46 -03:00
|
|
|
#if HIL_MODE != HIL_MODE_DISABLED || CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2015-11-04 13:32:01 -04:00
|
|
|
gcs_send_text(MAV_SEVERITY_INFO, "DISARMING MOTORS");
|
2012-08-21 23:19:50 -03:00
|
|
|
#endif
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2015-03-16 18:30:16 -03:00
|
|
|
// save compass offsets learned by the EKF
|
|
|
|
Vector3f magOffsets;
|
2015-04-09 21:33:05 -03:00
|
|
|
if (ahrs.use_compass() && ahrs.getMagOffsets(magOffsets)) {
|
|
|
|
compass.set_and_save_offsets(compass.get_primary(), magOffsets);
|
2014-07-09 05:13:30 -03:00
|
|
|
}
|
2011-11-05 01:41:51 -03:00
|
|
|
|
2014-02-02 03:58:36 -04:00
|
|
|
#if AUTOTUNE_ENABLED == ENABLED
|
2013-09-03 06:31:06 -03:00
|
|
|
// save auto tuned parameters
|
2014-02-02 03:58:36 -04:00
|
|
|
autotune_save_tuning_gains();
|
2013-10-04 03:49:19 -03:00
|
|
|
#endif
|
2013-09-03 06:31:06 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// we are not in the air
|
2014-01-30 04:36:40 -04:00
|
|
|
set_land_complete(true);
|
2014-09-19 03:54:36 -03:00
|
|
|
set_land_complete_maybe(true);
|
2014-05-15 04:19:44 -03:00
|
|
|
|
2013-05-13 06:07:28 -03:00
|
|
|
// log disarm to the dataflash
|
|
|
|
Log_Write_Event(DATA_DISARMED);
|
|
|
|
|
2015-07-14 02:01:22 -03:00
|
|
|
// send disarm command to motors
|
|
|
|
motors.armed(false);
|
|
|
|
|
|
|
|
// reset the mission
|
|
|
|
mission.reset();
|
|
|
|
|
2014-01-07 09:37:39 -04:00
|
|
|
// suspend logging
|
2014-10-22 05:39:08 -03:00
|
|
|
if (!(g.log_bitmask & MASK_LOG_WHEN_DISARMED)) {
|
|
|
|
DataFlash.EnableWrites(false);
|
|
|
|
}
|
2014-01-07 09:37:39 -04:00
|
|
|
|
2013-05-05 04:55:06 -03:00
|
|
|
// disable gps velocity based centrefugal force compensation
|
2013-05-06 01:32:11 -03:00
|
|
|
ahrs.set_correct_centrifugal(false);
|
2015-01-28 19:18:20 -04:00
|
|
|
hal.util->set_soft_armed(false);
|
2011-11-05 01:41:51 -03:00
|
|
|
}
|
|
|
|
|
2015-01-21 07:20:05 -04:00
|
|
|
// motors_output - send output to motors library which will adjust and send to ESCs and servos
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::motors_output()
|
2011-01-23 22:04:44 -04:00
|
|
|
{
|
2014-04-28 04:27:27 -03:00
|
|
|
// check if we are performing the motor test
|
|
|
|
if (ap.motor_test) {
|
|
|
|
motor_test_output();
|
|
|
|
} else {
|
2015-04-30 06:31:31 -03:00
|
|
|
if (!ap.using_interlock){
|
2015-04-22 14:56:05 -03:00
|
|
|
// if not using interlock switch, set according to Emergency Stop status
|
|
|
|
// where Emergency Stop is forced false during arming if Emergency Stop switch
|
2015-03-17 18:53:40 -03:00
|
|
|
// is not used. Interlock enabled means motors run, so we must
|
2015-04-22 14:56:05 -03:00
|
|
|
// invert motor_emergency_stop status for motors to run.
|
|
|
|
motors.set_interlock(!ap.motor_emergency_stop);
|
2015-03-12 20:20:47 -03:00
|
|
|
}
|
2014-04-28 04:27:27 -03:00
|
|
|
motors.output();
|
|
|
|
}
|
2012-01-01 16:46:32 -04:00
|
|
|
}
|
2015-04-28 11:06:39 -03:00
|
|
|
|
|
|
|
// check for pilot stick input to trigger lost vehicle alarm
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::lost_vehicle_check()
|
2015-04-28 11:06:39 -03:00
|
|
|
{
|
|
|
|
static uint8_t soundalarm_counter;
|
|
|
|
|
|
|
|
// disable if aux switch is setup to vehicle alarm as the two could interfere
|
|
|
|
if (check_if_auxsw_mode_used(AUXSW_LOST_COPTER_SOUND)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure throttle is down, motors not armed, pitch and roll rc at max. Note: rc1=roll rc2=pitch
|
2015-05-19 10:38:57 -03:00
|
|
|
if (ap.throttle_zero && !motors.armed() && (channel_roll->control_in > 4000) && (channel_pitch->control_in > 4000)) {
|
2015-04-28 11:06:39 -03:00
|
|
|
if (soundalarm_counter >= LOST_VEHICLE_DELAY) {
|
|
|
|
if (AP_Notify::flags.vehicle_lost == false) {
|
|
|
|
AP_Notify::flags.vehicle_lost = true;
|
2015-11-04 13:32:01 -04:00
|
|
|
gcs_send_text(MAV_SEVERITY_NOTICE,"Locate Copter Alarm!");
|
2015-04-28 11:06:39 -03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
soundalarm_counter++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
soundalarm_counter = 0;
|
|
|
|
if (AP_Notify::flags.vehicle_lost == true) {
|
|
|
|
AP_Notify::flags.vehicle_lost = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|