2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2024-01-25 23:11:40 -04:00
|
|
|
#include <AP_Stats/AP_Stats.h> // statistics library
|
|
|
|
|
2016-06-17 07:43:44 -03:00
|
|
|
// Code to detect a crash main ArduCopter code
|
|
|
|
#define LAND_CHECK_ANGLE_ERROR_DEG 30.0f // maximum angle error to be considered landing
|
|
|
|
#define LAND_CHECK_LARGE_ANGLE_CD 1500.0f // maximum angle target to be considered landing
|
|
|
|
#define LAND_CHECK_ACCEL_MOVING 3.0f // maximum acceleration after subtracting gravity
|
|
|
|
|
2015-05-29 23:12:49 -03:00
|
|
|
|
2015-04-16 01:27:06 -03:00
|
|
|
// counter to verify landings
|
2015-05-06 01:38:38 -03:00
|
|
|
static uint32_t land_detector_count = 0;
|
2015-04-16 01:27:06 -03:00
|
|
|
|
2015-06-17 08:37:15 -03:00
|
|
|
// run land and crash detectors
|
|
|
|
// called at MAIN_LOOP_RATE
|
|
|
|
void Copter::update_land_and_crash_detectors()
|
|
|
|
{
|
|
|
|
// update 1hz filtered acceleration
|
2022-07-26 21:21:30 -03:00
|
|
|
Vector3f accel_ef = ahrs.get_accel_ef();
|
2015-06-17 08:37:15 -03:00
|
|
|
accel_ef.z += GRAVITY_MSS;
|
2017-08-29 09:42:44 -03:00
|
|
|
land_accel_ef_filter.apply(accel_ef, scheduler.get_loop_period_s());
|
2015-06-17 08:37:15 -03:00
|
|
|
|
|
|
|
update_land_detector();
|
|
|
|
|
|
|
|
#if PARACHUTE == ENABLED
|
|
|
|
// check parachute
|
|
|
|
parachute_check();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
crash_check();
|
2018-08-12 11:19:47 -03:00
|
|
|
thrust_loss_check();
|
2020-11-07 14:33:10 -04:00
|
|
|
yaw_imbalance_check();
|
2015-06-17 08:37:15 -03:00
|
|
|
}
|
|
|
|
|
2015-04-16 01:27:06 -03:00
|
|
|
// update_land_detector - checks if we have landed and updates the ap.land_complete flag
|
2015-04-16 15:35:17 -03:00
|
|
|
// called at MAIN_LOOP_RATE
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::update_land_detector()
|
2015-04-16 01:27:06 -03:00
|
|
|
{
|
|
|
|
// land detector can not use the following sensors because they are unreliable during landing
|
|
|
|
// barometer altitude : ground effect can cause errors larger than 4m
|
|
|
|
// EKF vertical velocity or altitude : poor barometer and large acceleration from ground impact
|
|
|
|
// earth frame angle or angle error : landing on an uneven surface will force the airframe to match the ground angle
|
|
|
|
// gyro output : on uneven surface the airframe may rock back an forth after landing
|
|
|
|
// range finder : tend to be problematic at very short distances
|
|
|
|
// input throttle : in slow land the input throttle may be only slightly less than hover
|
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
if (!motors->armed()) {
|
2015-05-06 01:38:38 -03:00
|
|
|
// if disarmed, always landed.
|
|
|
|
set_land_complete(true);
|
|
|
|
} else if (ap.land_complete) {
|
2015-06-17 19:34:53 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
|
|
|
// if rotor speed and collective pitch are high then clear landing flag
|
2022-08-26 22:09:22 -03:00
|
|
|
if (!flightmode->is_taking_off() && motors->get_takeoff_collective() && motors->get_spool_state() == AP_Motors::SpoolState::THROTTLE_UNLIMITED) {
|
2015-06-17 19:34:53 -03:00
|
|
|
#else
|
2015-05-06 01:38:38 -03:00
|
|
|
// if throttle output is high then clear landing flag
|
2022-08-26 22:09:22 -03:00
|
|
|
if (!flightmode->is_taking_off() && motors->get_throttle_out() > get_non_takeoff_throttle() && motors->get_spool_state() == AP_Motors::SpoolState::THROTTLE_UNLIMITED) {
|
|
|
|
// this should never happen because take-off should be detected at the flight mode level
|
|
|
|
// this here to highlight there is a bug or missing take-off detection
|
|
|
|
INTERNAL_ERROR(AP_InternalError::error_t::flow_of_control);
|
2015-06-17 19:34:53 -03:00
|
|
|
#endif
|
2015-05-06 01:38:38 -03:00
|
|
|
set_land_complete(false);
|
|
|
|
}
|
2019-09-28 10:37:57 -03:00
|
|
|
} else if (standby_active) {
|
|
|
|
// land detector will not run in standby mode
|
|
|
|
land_detector_count = 0;
|
2015-05-06 01:38:38 -03:00
|
|
|
} else {
|
|
|
|
|
2022-06-08 16:42:08 -03:00
|
|
|
float land_trigger_sec = LAND_DETECTOR_TRIGGER_SEC;
|
2015-05-26 21:16:52 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
2021-10-29 13:17:45 -03:00
|
|
|
// check for both manual collective modes and modes that use altitude hold. For manual collective (called throttle
|
|
|
|
// because multi's use throttle), check that collective pitch is below land min collective position or throttle stick is zero.
|
|
|
|
// Including the throttle zero check will ensure the conditions where stabilize stick zero position was not below collective min. For modes
|
2021-10-09 11:46:31 -03:00
|
|
|
// that use altitude hold, check that the pilot is commanding a descent and collective is at min allowed for altitude hold modes.
|
2022-02-01 18:32:32 -04:00
|
|
|
|
|
|
|
// check if landing
|
|
|
|
const bool landing = flightmode->is_landing();
|
|
|
|
bool motor_at_lower_limit = (flightmode->has_manual_throttle() && (motors->get_below_land_min_coll() || heli_flags.coll_stk_low) && fabsf(ahrs.get_roll()) < M_PI/2.0f)
|
2023-01-21 23:33:21 -04:00
|
|
|
#if MODE_AUTOROTATE_ENABLED == ENABLED
|
|
|
|
|| (flightmode->mode_number() == Mode::Number::AUTOROTATE && motors->get_below_land_min_coll())
|
|
|
|
#endif
|
2022-02-01 18:32:32 -04:00
|
|
|
|| ((!force_flying || landing) && motors->limit.throttle_lower && pos_control->get_vel_desired_cms().z < 0.0f);
|
2022-06-08 16:42:08 -03:00
|
|
|
bool throttle_mix_at_min = true;
|
2015-05-26 21:16:52 -03:00
|
|
|
#else
|
2015-05-30 06:31:05 -03:00
|
|
|
// check that the average throttle output is near minimum (less than 12.5% hover throttle)
|
2022-06-08 16:42:08 -03:00
|
|
|
bool motor_at_lower_limit = motors->limit.throttle_lower;
|
|
|
|
bool throttle_mix_at_min = attitude_control->is_throttle_mix_min();
|
|
|
|
// set throttle_mix_at_min to true because throttle is never at mix min in airmode
|
|
|
|
// increase land_trigger_sec when using airmode
|
|
|
|
if (flightmode->has_manual_throttle() && air_mode == AirMode::AIRMODE_ENABLED) {
|
|
|
|
land_trigger_sec = LAND_AIRMODE_DETECTOR_TRIGGER_SEC;
|
|
|
|
throttle_mix_at_min = true;
|
|
|
|
}
|
2015-05-26 21:16:52 -03:00
|
|
|
#endif
|
2015-04-16 07:08:01 -03:00
|
|
|
|
2021-02-06 18:47:01 -04:00
|
|
|
uint8_t land_detector_scalar = 1;
|
2022-10-01 07:21:38 -03:00
|
|
|
#if AP_LANDINGGEAR_ENABLED
|
2021-02-06 18:47:01 -04:00
|
|
|
if (landinggear.get_wow_state() != AP_LandingGear::LG_WOW_UNKNOWN) {
|
|
|
|
// we have a WoW sensor so lets loosen the strictness of the landing detector
|
|
|
|
land_detector_scalar = 2;
|
|
|
|
}
|
2021-04-06 00:22:13 -03:00
|
|
|
#endif
|
2021-02-06 18:47:01 -04:00
|
|
|
|
2018-01-12 03:41:53 -04:00
|
|
|
// check that the airframe is not accelerating (not falling or braking after fast forward flight)
|
2021-02-06 18:47:01 -04:00
|
|
|
bool accel_stationary = (land_accel_ef_filter.get().length() <= LAND_DETECTOR_ACCEL_MAX * land_detector_scalar);
|
2015-04-16 01:27:06 -03:00
|
|
|
|
2016-08-15 03:34:18 -03:00
|
|
|
// check that vertical speed is within 1m/s of zero
|
2021-10-20 05:29:57 -03:00
|
|
|
bool descent_rate_low = fabsf(inertial_nav.get_velocity_z_up_cms()) < 100 * land_detector_scalar;
|
2016-08-15 03:34:18 -03:00
|
|
|
|
2016-08-16 00:06:49 -03:00
|
|
|
// if we have a healthy rangefinder only allow landing detection below 2 meters
|
|
|
|
bool rangefinder_check = (!rangefinder_alt_ok() || rangefinder_state.alt_cm_filt.get() < LAND_RANGEFINDER_MIN_ALT_CM);
|
|
|
|
|
2021-02-05 00:15:06 -04:00
|
|
|
// if we have weight on wheels (WoW) or ambiguous unknown. never no WoW
|
2022-10-01 07:21:38 -03:00
|
|
|
#if AP_LANDINGGEAR_ENABLED
|
2021-02-06 18:47:01 -04:00
|
|
|
const bool WoW_check = (landinggear.get_wow_state() == AP_LandingGear::LG_WOW || landinggear.get_wow_state() == AP_LandingGear::LG_WOW_UNKNOWN);
|
2021-04-06 00:22:13 -03:00
|
|
|
#else
|
|
|
|
const bool WoW_check = true;
|
|
|
|
#endif
|
2021-02-05 00:15:06 -04:00
|
|
|
|
2022-06-08 16:42:08 -03:00
|
|
|
if (motor_at_lower_limit && throttle_mix_at_min && accel_stationary && descent_rate_low && rangefinder_check && WoW_check) {
|
2015-05-06 01:38:38 -03:00
|
|
|
// landed criteria met - increment the counter and check if we've triggered
|
2022-06-08 16:42:08 -03:00
|
|
|
if( land_detector_count < land_trigger_sec*scheduler.get_loop_rate_hz()) {
|
2015-05-06 01:38:38 -03:00
|
|
|
land_detector_count++;
|
|
|
|
} else {
|
2015-04-16 01:27:06 -03:00
|
|
|
set_land_complete(true);
|
|
|
|
}
|
2015-05-30 06:31:05 -03:00
|
|
|
} else {
|
|
|
|
// we've sensed movement up or down so reset land_detector
|
2015-05-06 01:38:38 -03:00
|
|
|
land_detector_count = 0;
|
2015-04-16 01:27:06 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-04 22:21:31 -03:00
|
|
|
set_land_complete_maybe(ap.land_complete || (land_detector_count >= LAND_DETECTOR_MAYBE_TRIGGER_SEC*scheduler.get_loop_rate_hz()));
|
2015-05-06 01:38:38 -03:00
|
|
|
}
|
|
|
|
|
2016-05-13 00:01:38 -03:00
|
|
|
// set land_complete flag and disarm motors if disarm-on-land is configured
|
2015-05-06 01:38:38 -03:00
|
|
|
void Copter::set_land_complete(bool b)
|
|
|
|
{
|
|
|
|
// if no change, exit immediately
|
|
|
|
if( ap.land_complete == b )
|
|
|
|
return;
|
|
|
|
|
|
|
|
land_detector_count = 0;
|
|
|
|
|
2023-07-13 21:58:09 -03:00
|
|
|
#if HAL_LOGGING_ENABLED
|
2015-05-06 01:38:38 -03:00
|
|
|
if(b){
|
2019-10-25 03:06:05 -03:00
|
|
|
AP::logger().Write_Event(LogEvent::LAND_COMPLETE);
|
2015-05-06 01:38:38 -03:00
|
|
|
} else {
|
2019-10-25 03:06:05 -03:00
|
|
|
AP::logger().Write_Event(LogEvent::NOT_LANDED);
|
2015-05-06 01:38:38 -03:00
|
|
|
}
|
2023-07-13 21:58:09 -03:00
|
|
|
#endif
|
2015-05-06 01:38:38 -03:00
|
|
|
ap.land_complete = b;
|
2016-01-11 19:59:42 -04:00
|
|
|
|
2024-01-25 23:11:40 -04:00
|
|
|
#if AP_STATS_ENABLED
|
|
|
|
AP::stats()->set_flying(!b);
|
2018-02-28 08:20:57 -04:00
|
|
|
#endif
|
2016-10-13 07:40:13 -03:00
|
|
|
|
2017-06-19 00:16:36 -03:00
|
|
|
// tell AHRS flying state
|
2020-01-06 19:06:03 -04:00
|
|
|
set_likely_flying(!b);
|
2017-06-19 00:16:36 -03:00
|
|
|
|
2016-05-13 00:01:38 -03:00
|
|
|
// trigger disarm-on-land if configured
|
2016-01-11 19:59:42 -04:00
|
|
|
bool disarm_on_land_configured = (g.throttle_behavior & THR_BEHAVE_DISARM_ON_LAND_DETECT) != 0;
|
2020-12-31 20:49:01 -04:00
|
|
|
const bool mode_disarms_on_land = flightmode->allows_arming(AP_Arming::Method::LANDING) && !flightmode->has_manual_throttle();
|
2016-01-11 19:59:42 -04:00
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
if (ap.land_complete && motors->armed() && disarm_on_land_configured && mode_disarms_on_land) {
|
2020-02-21 09:09:57 -04:00
|
|
|
arming.disarm(AP_Arming::Method::LANDED);
|
2016-01-11 19:59:42 -04:00
|
|
|
}
|
2015-04-16 01:27:06 -03:00
|
|
|
}
|
|
|
|
|
2015-05-30 05:31:14 -03:00
|
|
|
// set land complete maybe flag
|
|
|
|
void Copter::set_land_complete_maybe(bool b)
|
|
|
|
{
|
|
|
|
// if no change, exit immediately
|
|
|
|
if (ap.land_complete_maybe == b)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (b) {
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_EVENT(LogEvent::LAND_COMPLETE_MAYBE);
|
2015-05-30 05:31:14 -03:00
|
|
|
}
|
|
|
|
ap.land_complete_maybe = b;
|
|
|
|
}
|
|
|
|
|
2020-02-21 02:50:56 -04:00
|
|
|
// sets motors throttle_low_comp value depending upon vehicle state
|
2015-04-16 01:27:06 -03:00
|
|
|
// low values favour pilot/autopilot throttle over attitude control, high values favour attitude control over throttle
|
|
|
|
// has no effect when throttle is above hover throttle
|
2020-02-21 02:50:56 -04:00
|
|
|
void Copter::update_throttle_mix()
|
2015-04-16 01:27:06 -03:00
|
|
|
{
|
2015-07-15 04:10:42 -03:00
|
|
|
#if FRAME_CONFIG != HELI_FRAME
|
2015-08-23 03:41:02 -03:00
|
|
|
// if disarmed or landed prioritise throttle
|
2020-02-21 02:50:56 -04:00
|
|
|
if (!motors->armed() || ap.land_complete) {
|
2017-01-09 03:31:26 -04:00
|
|
|
attitude_control->set_throttle_mix_min();
|
2015-06-17 10:08:20 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-05 19:56:38 -04:00
|
|
|
if (flightmode->has_manual_throttle()) {
|
2015-04-16 01:27:06 -03:00
|
|
|
// manual throttle
|
2022-06-08 16:42:08 -03:00
|
|
|
if (channel_throttle->get_control_in() <= 0 && air_mode != AirMode::AIRMODE_ENABLED) {
|
2017-01-09 03:31:26 -04:00
|
|
|
attitude_control->set_throttle_mix_min();
|
2015-04-16 01:27:06 -03:00
|
|
|
} else {
|
2017-01-04 01:19:09 -04:00
|
|
|
attitude_control->set_throttle_mix_man();
|
2015-04-16 01:27:06 -03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// autopilot controlled throttle
|
|
|
|
|
2015-05-03 11:21:44 -03:00
|
|
|
// check for aggressive flight requests - requested roll or pitch angle below 15 degrees
|
2017-01-09 03:31:26 -04:00
|
|
|
const Vector3f angle_target = attitude_control->get_att_target_euler_cd();
|
2021-09-11 07:25:53 -03:00
|
|
|
bool large_angle_request = angle_target.xy().length() > LAND_CHECK_LARGE_ANGLE_CD;
|
2015-04-16 01:27:06 -03:00
|
|
|
|
2015-05-03 11:21:44 -03:00
|
|
|
// check for large external disturbance - angle error over 30 degrees
|
2017-01-09 03:31:26 -04:00
|
|
|
const float angle_error = attitude_control->get_att_error_angle_deg();
|
2016-06-17 07:43:44 -03:00
|
|
|
bool large_angle_error = (angle_error > LAND_CHECK_ANGLE_ERROR_DEG);
|
2015-04-16 01:27:06 -03:00
|
|
|
|
2015-05-03 11:21:44 -03:00
|
|
|
// check for large acceleration - falling or high turbulence
|
2020-02-21 02:52:03 -04:00
|
|
|
const bool accel_moving = (land_accel_ef_filter.get().length() > LAND_CHECK_ACCEL_MOVING);
|
2015-04-16 01:27:06 -03:00
|
|
|
|
2021-05-19 11:07:38 -03:00
|
|
|
// check for requested descent
|
2021-05-11 01:42:02 -03:00
|
|
|
bool descent_not_demanded = pos_control->get_vel_desired_cms().z >= 0.0f;
|
2015-05-03 11:21:44 -03:00
|
|
|
|
2020-04-28 05:34:32 -03:00
|
|
|
// check if landing
|
|
|
|
const bool landing = flightmode->is_landing();
|
|
|
|
|
2022-01-24 19:38:32 -04:00
|
|
|
if (((large_angle_request || force_flying) && !landing) || large_angle_error || accel_moving || descent_not_demanded) {
|
2019-06-17 12:37:08 -03:00
|
|
|
attitude_control->set_throttle_mix_max(pos_control->get_vel_z_control_ratio());
|
2015-04-16 01:27:06 -03:00
|
|
|
} else {
|
2017-01-09 03:31:26 -04:00
|
|
|
attitude_control->set_throttle_mix_min();
|
2015-04-16 01:27:06 -03:00
|
|
|
}
|
|
|
|
}
|
2015-07-15 04:10:42 -03:00
|
|
|
#endif
|
2015-04-16 01:27:06 -03:00
|
|
|
}
|