2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2011-02-17 03:28:49 -04:00
|
|
|
/*
|
2012-08-16 21:50:02 -03:00
|
|
|
* This event will be called when the failsafe changes
|
|
|
|
* boolean failsafe reflects the current state
|
|
|
|
*/
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
bool Copter::failsafe_option(FailsafeOption opt) const
|
|
|
|
{
|
|
|
|
return (g2.fs_options & (uint32_t)opt);
|
|
|
|
}
|
|
|
|
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::failsafe_radio_on_event()
|
2011-02-17 03:28:49 -04:00
|
|
|
{
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_RADIO, LogErrorCode::FAILSAFE_OCCURRED);
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
// set desired action based on FS_THR_ENABLE parameter
|
2021-08-04 05:58:08 -03:00
|
|
|
FailsafeAction desired_action;
|
2019-09-21 21:09:18 -03:00
|
|
|
switch (g.failsafe_throttle) {
|
|
|
|
case FS_THR_DISABLED:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_THR_ENABLED_ALWAYS_RTL:
|
|
|
|
case FS_THR_ENABLED_CONTINUE_MISSION:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::RTL;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_THR_ENABLED_ALWAYS_SMARTRTL_OR_RTL:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::SMARTRTL;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_THR_ENABLED_ALWAYS_SMARTRTL_OR_LAND:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::SMARTRTL_LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_THR_ENABLED_ALWAYS_LAND:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
2021-07-24 20:25:40 -03:00
|
|
|
case FS_THR_ENABLED_AUTO_RTL_OR_RTL:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::AUTO_DO_LAND_START;
|
2021-07-24 20:25:40 -03:00
|
|
|
break;
|
2023-03-06 21:41:50 -04:00
|
|
|
case FS_THR_ENABLED_BRAKE_OR_LAND:
|
|
|
|
desired_action = FailsafeAction::BRAKE_LAND;
|
|
|
|
break;
|
2019-09-21 21:09:18 -03:00
|
|
|
default:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2012-11-13 10:43:54 -04:00
|
|
|
}
|
|
|
|
|
2019-09-21 21:09:18 -03:00
|
|
|
// Conditions to deviate from FS_THR_ENABLE selection and send specific GCS warning
|
2016-01-11 18:19:49 -04:00
|
|
|
if (should_disarm_on_failsafe()) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// should immediately disarm when we're on the ground
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Radio", "Disarming");
|
2020-02-21 09:09:57 -04:00
|
|
|
arming.disarm(AP_Arming::Method::RADIOFAILSAFE);
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
} else if (flightmode->is_landing() && ((battery.has_failsafed() && battery.get_highest_failsafe_priority() <= FAILSAFE_LAND_PRIORITY))) {
|
|
|
|
// Allow landing to continue when battery failsafe requires it (not a user option)
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Radio + Battery", "Continuing Landing");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
} else if (flightmode->is_landing() && failsafe_option(FailsafeOption::CONTINUE_IF_LANDING)) {
|
|
|
|
// Allow landing to continue when FS_OPTIONS is set to continue landing
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Radio", "Continuing Landing");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
2020-01-30 03:29:36 -04:00
|
|
|
} else if (flightmode->mode_number() == Mode::Number::AUTO && failsafe_option(FailsafeOption::RC_CONTINUE_IF_AUTO)) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// Allow mission to continue when FS_OPTIONS is set to continue mission
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Radio", "Continuing Auto");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
2022-04-27 02:41:03 -03:00
|
|
|
} else if ((flightmode->in_guided_mode()) && failsafe_option(FailsafeOption::RC_CONTINUE_IF_GUIDED)) {
|
|
|
|
// Allow guided mode to continue when FS_OPTIONS is set to continue in guided mode
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Radio", "Continuing Guided Mode");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
2016-01-11 18:19:49 -04:00
|
|
|
} else {
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Radio");
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2012-12-29 23:08:25 -04:00
|
|
|
|
2019-09-21 21:09:18 -03:00
|
|
|
// Call the failsafe action handler
|
|
|
|
do_failsafe_action(desired_action, ModeReason::RADIO_FAILSAFE);
|
2011-03-13 03:25:38 -03:00
|
|
|
}
|
2011-02-17 03:28:49 -04:00
|
|
|
|
2012-11-11 09:11:12 -04:00
|
|
|
// failsafe_off_event - respond to radio contact being regained
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::failsafe_radio_off_event()
|
2011-03-13 03:25:38 -03:00
|
|
|
{
|
2012-12-29 23:08:25 -04:00
|
|
|
// no need to do anything except log the error as resolved
|
2012-11-11 09:11:12 -04:00
|
|
|
// user can now override roll, pitch, yaw and throttle and even use flight mode switch to restore previous flight mode
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_RADIO, LogErrorCode::FAILSAFE_RESOLVED);
|
2019-09-21 21:09:18 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "Radio Failsafe Cleared");
|
2011-02-17 03:28:49 -04:00
|
|
|
}
|
|
|
|
|
2022-04-05 04:34:41 -03:00
|
|
|
void Copter::announce_failsafe(const char *type, const char *action_undertaken)
|
|
|
|
{
|
|
|
|
if (action_undertaken != nullptr) {
|
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "%s Failsafe - %s", type, action_undertaken);
|
|
|
|
} else {
|
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "%s Failsafe", type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 19:32:16 -04:00
|
|
|
void Copter::handle_battery_failsafe(const char *type_str, const int8_t action)
|
2011-02-17 03:28:49 -04:00
|
|
|
{
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_BATT, LogErrorCode::FAILSAFE_OCCURRED);
|
2013-10-01 10:34:44 -03:00
|
|
|
|
2021-08-04 05:58:08 -03:00
|
|
|
FailsafeAction desired_action = (FailsafeAction)action;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
// Conditions to deviate from BATT_FS_XXX_ACT parameter setting
|
2018-02-28 19:32:16 -04:00
|
|
|
if (should_disarm_on_failsafe()) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// should immediately disarm when we're on the ground
|
2020-02-21 09:09:57 -04:00
|
|
|
arming.disarm(AP_Arming::Method::BATTERYFAILSAFE);
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Battery", "Disarming");
|
2019-09-21 21:09:18 -03:00
|
|
|
|
2021-08-04 05:58:08 -03:00
|
|
|
} else if (flightmode->is_landing() && failsafe_option(FailsafeOption::CONTINUE_IF_LANDING) && desired_action != FailsafeAction::NONE) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// Allow landing to continue when FS_OPTIONS is set to continue when landing
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Battery", "Continuing Landing");
|
2018-02-28 19:32:16 -04:00
|
|
|
} else {
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("Battery");
|
2012-06-04 22:31:40 -03:00
|
|
|
}
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
// Battery FS options already use the Failsafe_Options enum. So use them directly.
|
|
|
|
do_failsafe_action(desired_action, ModeReason::BATTERY_FAILSAFE);
|
|
|
|
|
2011-02-17 03:28:49 -04:00
|
|
|
}
|
|
|
|
|
2013-04-29 09:30:22 -03:00
|
|
|
// failsafe_gcs_check - check for ground station failsafe
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::failsafe_gcs_check()
|
2013-04-29 09:30:22 -03:00
|
|
|
{
|
2019-09-21 21:09:18 -03:00
|
|
|
// Bypass GCS failsafe checks if disabled or GCS never connected
|
2021-02-04 22:28:08 -04:00
|
|
|
if (g.failsafe_gcs == FS_GCS_DISABLED) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint32_t gcs_last_seen_ms = gcs().sysid_myggcs_last_seen_time_ms();
|
|
|
|
if (gcs_last_seen_ms == 0) {
|
2013-04-29 09:30:22 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-20 08:44:56 -03:00
|
|
|
// calc time since last gcs update
|
2015-01-02 13:46:41 -04:00
|
|
|
// note: this only looks at the heartbeat from the device id set by g.sysid_my_gcs
|
2021-02-04 22:28:08 -04:00
|
|
|
const uint32_t last_gcs_update_ms = millis() - gcs_last_seen_ms;
|
2020-11-11 20:46:06 -04:00
|
|
|
const uint32_t gcs_timeout_ms = uint32_t(constrain_float(g2.fs_gcs_timeout * 1000.0f, 0.0f, UINT32_MAX));
|
2013-04-29 09:30:22 -03:00
|
|
|
|
2019-09-21 21:09:18 -03:00
|
|
|
// Determine which event to trigger
|
2020-11-11 20:46:06 -04:00
|
|
|
if (last_gcs_update_ms < gcs_timeout_ms && failsafe.gcs) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// Recovery from a GCS failsafe
|
|
|
|
set_failsafe_gcs(false);
|
|
|
|
failsafe_gcs_off_event();
|
2013-04-29 09:30:22 -03:00
|
|
|
|
2020-11-11 20:46:06 -04:00
|
|
|
} else if (last_gcs_update_ms < gcs_timeout_ms && !failsafe.gcs) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// No problem, do nothing
|
|
|
|
|
2020-11-11 20:46:06 -04:00
|
|
|
} else if (last_gcs_update_ms > gcs_timeout_ms && failsafe.gcs) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// Already in failsafe, do nothing
|
|
|
|
|
2020-11-11 20:46:06 -04:00
|
|
|
} else if (last_gcs_update_ms > gcs_timeout_ms && !failsafe.gcs) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// New GCS failsafe event, trigger events
|
|
|
|
set_failsafe_gcs(true);
|
|
|
|
failsafe_gcs_on_event();
|
2013-04-29 09:30:22 -03:00
|
|
|
}
|
2019-09-21 21:09:18 -03:00
|
|
|
}
|
2013-04-29 09:30:22 -03:00
|
|
|
|
2019-09-21 21:09:18 -03:00
|
|
|
// failsafe_gcs_on_event - actions to take when GCS contact is lost
|
|
|
|
void Copter::failsafe_gcs_on_event(void)
|
|
|
|
{
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_GCS, LogErrorCode::FAILSAFE_OCCURRED);
|
2018-04-03 23:17:43 -03:00
|
|
|
RC_Channels::clear_overrides();
|
2014-04-09 12:30:26 -03:00
|
|
|
|
2021-08-04 05:58:08 -03:00
|
|
|
// convert the desired failsafe response to the FailsafeAction enum
|
|
|
|
FailsafeAction desired_action;
|
2019-09-21 21:09:18 -03:00
|
|
|
switch (g.failsafe_gcs) {
|
|
|
|
case FS_GCS_DISABLED:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_GCS_ENABLED_ALWAYS_RTL:
|
|
|
|
case FS_GCS_ENABLED_CONTINUE_MISSION:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::RTL;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_GCS_ENABLED_ALWAYS_SMARTRTL_OR_RTL:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::SMARTRTL;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_GCS_ENABLED_ALWAYS_SMARTRTL_OR_LAND:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::SMARTRTL_LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
|
|
|
case FS_GCS_ENABLED_ALWAYS_LAND:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
break;
|
2021-07-24 20:25:40 -03:00
|
|
|
case FS_GCS_ENABLED_AUTO_RTL_OR_RTL:
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::AUTO_DO_LAND_START;
|
2021-07-24 20:25:40 -03:00
|
|
|
break;
|
2023-05-19 01:01:35 -03:00
|
|
|
case FS_GCS_ENABLED_BRAKE_OR_LAND:
|
|
|
|
desired_action = FailsafeAction::BRAKE_LAND;
|
|
|
|
break;
|
2019-09-21 21:09:18 -03:00
|
|
|
default: // if an invalid parameter value is set, the fallback is RTL
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::RTL;
|
2019-09-21 21:09:18 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Conditions to deviate from FS_GCS_ENABLE parameter setting
|
|
|
|
if (!motors->armed()) {
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS");
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
} else if (should_disarm_on_failsafe()) {
|
|
|
|
// should immediately disarm when we're on the ground
|
2020-02-21 09:09:57 -04:00
|
|
|
arming.disarm(AP_Arming::Method::GCSFAILSAFE);
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS", "Disarming");
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
} else if (flightmode->is_landing() && ((battery.has_failsafed() && battery.get_highest_failsafe_priority() <= FAILSAFE_LAND_PRIORITY))) {
|
|
|
|
// Allow landing to continue when battery failsafe requires it (not a user option)
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS + Battery", "Continuing Landing");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
} else if (flightmode->is_landing() && failsafe_option(FailsafeOption::CONTINUE_IF_LANDING)) {
|
|
|
|
// Allow landing to continue when FS_OPTIONS is set to continue landing
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS", "Continuing Landing");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::LAND;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
2020-01-30 03:29:36 -04:00
|
|
|
} else if (flightmode->mode_number() == Mode::Number::AUTO && failsafe_option(FailsafeOption::GCS_CONTINUE_IF_AUTO)) {
|
2019-09-21 21:09:18 -03:00
|
|
|
// Allow mission to continue when FS_OPTIONS is set to continue mission
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS", "Continuing Auto Mode");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
} else if (failsafe_option(FailsafeOption::GCS_CONTINUE_IF_PILOT_CONTROL) && !flightmode->is_autopilot()) {
|
|
|
|
// should continue when in a pilot controlled mode because FS_OPTIONS is set to continue in pilot controlled modes
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS", "Continuing Pilot Control");
|
2021-08-04 05:58:08 -03:00
|
|
|
desired_action = FailsafeAction::NONE;
|
2016-01-25 19:18:38 -04:00
|
|
|
} else {
|
2022-04-05 04:34:41 -03:00
|
|
|
announce_failsafe("GCS");
|
2013-04-29 09:30:22 -03:00
|
|
|
}
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
// Call the failsafe action handler
|
|
|
|
do_failsafe_action(desired_action, ModeReason::GCS_FAILSAFE);
|
2013-04-29 09:30:22 -03:00
|
|
|
}
|
|
|
|
|
2013-07-20 08:44:56 -03:00
|
|
|
// failsafe_gcs_off_event - actions to take when GCS contact is restored
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::failsafe_gcs_off_event(void)
|
2013-04-29 09:30:22 -03:00
|
|
|
{
|
2019-09-21 21:09:18 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "GCS Failsafe Cleared");
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_GCS, LogErrorCode::FAILSAFE_RESOLVED);
|
2013-04-29 09:30:22 -03:00
|
|
|
}
|
|
|
|
|
2016-04-22 08:37:48 -03:00
|
|
|
// executes terrain failsafe if data is missing for longer than a few seconds
|
|
|
|
void Copter::failsafe_terrain_check()
|
|
|
|
{
|
2019-09-08 20:08:02 -03:00
|
|
|
// trigger within <n> milliseconds of failures while in various modes
|
2016-04-22 08:37:48 -03:00
|
|
|
bool timeout = (failsafe.terrain_last_failure_ms - failsafe.terrain_first_failure_ms) > FS_TERRAIN_TIMEOUT_MS;
|
2019-09-08 20:08:02 -03:00
|
|
|
bool trigger_event = timeout && flightmode->requires_terrain_failsafe();
|
2016-04-22 08:37:48 -03:00
|
|
|
|
|
|
|
// check for clearing of event
|
|
|
|
if (trigger_event != failsafe.terrain) {
|
|
|
|
if (trigger_event) {
|
|
|
|
failsafe_terrain_on_event();
|
|
|
|
} else {
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_TERRAIN, LogErrorCode::ERROR_RESOLVED);
|
2016-04-22 08:37:48 -03:00
|
|
|
failsafe.terrain = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set terrain data status (found or not found)
|
|
|
|
void Copter::failsafe_terrain_set_status(bool data_ok)
|
|
|
|
{
|
|
|
|
uint32_t now = millis();
|
|
|
|
|
|
|
|
// record time of first and latest failures (i.e. duration of failures)
|
|
|
|
if (!data_ok) {
|
|
|
|
failsafe.terrain_last_failure_ms = now;
|
|
|
|
if (failsafe.terrain_first_failure_ms == 0) {
|
|
|
|
failsafe.terrain_first_failure_ms = now;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// failures cleared after 0.1 seconds of persistent successes
|
|
|
|
if (now - failsafe.terrain_last_failure_ms > 100) {
|
|
|
|
failsafe.terrain_last_failure_ms = 0;
|
|
|
|
failsafe.terrain_first_failure_ms = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// terrain failsafe action
|
|
|
|
void Copter::failsafe_terrain_on_event()
|
|
|
|
{
|
|
|
|
failsafe.terrain = true;
|
2017-07-08 21:56:49 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_CRITICAL,"Failsafe: Terrain data missing");
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_TERRAIN, LogErrorCode::FAILSAFE_OCCURRED);
|
2016-04-22 08:37:48 -03:00
|
|
|
|
|
|
|
if (should_disarm_on_failsafe()) {
|
2020-02-21 09:09:57 -04:00
|
|
|
arming.disarm(AP_Arming::Method::TERRAINFAILSAFE);
|
2018-02-23 01:33:49 -04:00
|
|
|
#if MODE_RTL_ENABLED == ENABLED
|
2020-01-30 03:29:36 -04:00
|
|
|
} else if (flightmode->mode_number() == Mode::Number::RTL) {
|
2017-12-11 01:43:27 -04:00
|
|
|
mode_rtl.restart_without_terrain();
|
2018-02-23 01:33:49 -04:00
|
|
|
#endif
|
2016-04-22 08:37:48 -03:00
|
|
|
} else {
|
2019-10-17 00:49:22 -03:00
|
|
|
set_mode_RTL_or_land_with_pause(ModeReason::TERRAIN_FAILSAFE);
|
2016-04-22 08:37:48 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-25 08:41:18 -03:00
|
|
|
// check for gps glitch failsafe
|
|
|
|
void Copter::gpsglitch_check()
|
|
|
|
{
|
|
|
|
// get filter status
|
|
|
|
nav_filter_status filt_status = inertial_nav.get_filter_status();
|
|
|
|
bool gps_glitching = filt_status.flags.gps_glitching;
|
|
|
|
|
|
|
|
// log start or stop of gps glitch. AP_Notify update is handled from within AP_AHRS
|
|
|
|
if (ap.gps_glitching != gps_glitching) {
|
|
|
|
ap.gps_glitching = gps_glitching;
|
|
|
|
if (gps_glitching) {
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::GPS, LogErrorCode::GPS_GLITCH);
|
2022-05-17 14:18:47 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_CRITICAL,"GPS Glitch or Compass error");
|
2017-07-25 08:41:18 -03:00
|
|
|
} else {
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::GPS, LogErrorCode::ERROR_RESOLVED);
|
2022-05-17 14:18:47 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_CRITICAL,"Glitch cleared");
|
2017-07-25 08:41:18 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-10 23:17:13 -03:00
|
|
|
// dead reckoning alert and failsafe
|
|
|
|
void Copter::failsafe_deadreckon_check()
|
|
|
|
{
|
|
|
|
// update dead reckoning state
|
|
|
|
const char* dr_prefix_str = "Dead Reckoning";
|
|
|
|
|
|
|
|
// get EKF filter status
|
|
|
|
bool ekf_dead_reckoning = inertial_nav.get_filter_status().flags.dead_reckoning;
|
|
|
|
|
|
|
|
// alert user to start or stop of dead reckoning
|
|
|
|
const uint32_t now_ms = AP_HAL::millis();
|
|
|
|
if (dead_reckoning.active != ekf_dead_reckoning) {
|
|
|
|
dead_reckoning.active = ekf_dead_reckoning;
|
|
|
|
if (dead_reckoning.active) {
|
|
|
|
dead_reckoning.start_ms = now_ms;
|
|
|
|
gcs().send_text(MAV_SEVERITY_CRITICAL,"%s started", dr_prefix_str);
|
|
|
|
} else {
|
|
|
|
dead_reckoning.start_ms = 0;
|
|
|
|
dead_reckoning.timeout = false;
|
|
|
|
gcs().send_text(MAV_SEVERITY_CRITICAL,"%s stopped", dr_prefix_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for timeout
|
|
|
|
if (dead_reckoning.active && !dead_reckoning.timeout) {
|
|
|
|
const uint32_t dr_timeout_ms = uint32_t(constrain_float(g2.failsafe_dr_timeout * 1000.0f, 0.0f, UINT32_MAX));
|
|
|
|
if (now_ms - dead_reckoning.start_ms > dr_timeout_ms) {
|
|
|
|
dead_reckoning.timeout = true;
|
|
|
|
gcs().send_text(MAV_SEVERITY_CRITICAL,"%s timeout", dr_prefix_str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// exit immediately if deadreckon failsafe is disabled
|
|
|
|
if (g2.failsafe_dr_enable <= 0) {
|
|
|
|
failsafe.deadreckon = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for failsafe action
|
|
|
|
if (failsafe.deadreckon != ekf_dead_reckoning) {
|
|
|
|
failsafe.deadreckon = ekf_dead_reckoning;
|
|
|
|
|
|
|
|
// only take action in modes requiring position estimate
|
|
|
|
if (failsafe.deadreckon && copter.flightmode->requires_GPS()) {
|
|
|
|
|
|
|
|
// log error
|
2023-07-13 21:58:09 -03:00
|
|
|
LOGGER_WRITE_ERROR(LogErrorSubsystem::FAILSAFE_DEADRECKON, LogErrorCode::FAILSAFE_OCCURRED);
|
2022-05-10 23:17:13 -03:00
|
|
|
|
|
|
|
// immediately disarm while landed
|
|
|
|
if (should_disarm_on_failsafe()) {
|
|
|
|
arming.disarm(AP_Arming::Method::DEADRECKON_FAILSAFE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// take user specified action
|
|
|
|
do_failsafe_action((FailsafeAction)g2.failsafe_dr_enable.get(), ModeReason::DEADRECKON_FAILSAFE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-14 23:48:54 -04:00
|
|
|
// set_mode_RTL_or_land_with_pause - sets mode to RTL if possible or LAND with 4 second delay before descent starts
|
|
|
|
// this is always called from a failsafe so we trigger notification to pilot
|
2019-10-17 00:49:22 -03:00
|
|
|
void Copter::set_mode_RTL_or_land_with_pause(ModeReason reason)
|
2014-12-14 23:48:54 -04:00
|
|
|
{
|
|
|
|
// attempt to switch to RTL, if this fails then switch to Land
|
2019-09-07 20:33:56 -03:00
|
|
|
if (!set_mode(Mode::Number::RTL, reason)) {
|
2014-12-14 23:48:54 -04:00
|
|
|
// set mode to land will trigger mode change notification to pilot
|
2016-01-25 19:40:41 -04:00
|
|
|
set_mode_land_with_pause(reason);
|
2014-12-14 23:48:54 -04:00
|
|
|
} else {
|
|
|
|
// alert pilot to mode change
|
|
|
|
AP_Notify::events.failsafe_mode_change = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-19 09:44:02 -04:00
|
|
|
// set_mode_SmartRTL_or_land_with_pause - sets mode to SMART_RTL if possible or LAND with 4 second delay before descent starts
|
|
|
|
// this is always called from a failsafe so we trigger notification to pilot
|
2019-10-17 00:49:22 -03:00
|
|
|
void Copter::set_mode_SmartRTL_or_land_with_pause(ModeReason reason)
|
2018-01-19 09:44:02 -04:00
|
|
|
{
|
|
|
|
// attempt to switch to SMART_RTL, if this failed then switch to Land
|
2019-09-07 20:33:56 -03:00
|
|
|
if (!set_mode(Mode::Number::SMART_RTL, reason)) {
|
2018-01-19 09:44:02 -04:00
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "SmartRTL Unavailable, Using Land Mode");
|
|
|
|
set_mode_land_with_pause(reason);
|
|
|
|
} else {
|
|
|
|
AP_Notify::events.failsafe_mode_change = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set_mode_SmartRTL_or_RTL - sets mode to SMART_RTL if possible or RTL if possible or LAND with 4 second delay before descent starts
|
|
|
|
// this is always called from a failsafe so we trigger notification to pilot
|
2019-10-17 00:49:22 -03:00
|
|
|
void Copter::set_mode_SmartRTL_or_RTL(ModeReason reason)
|
2018-01-19 09:44:02 -04:00
|
|
|
{
|
|
|
|
// attempt to switch to SmartRTL, if this failed then attempt to RTL
|
|
|
|
// if that fails, then land
|
2019-09-07 20:33:56 -03:00
|
|
|
if (!set_mode(Mode::Number::SMART_RTL, reason)) {
|
2018-01-19 09:44:02 -04:00
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "SmartRTL Unavailable, Trying RTL Mode");
|
|
|
|
set_mode_RTL_or_land_with_pause(reason);
|
|
|
|
} else {
|
|
|
|
AP_Notify::events.failsafe_mode_change = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-24 20:25:40 -03:00
|
|
|
// Sets mode to Auto and jumps to DO_LAND_START, as set with AUTO_RTL param
|
|
|
|
// This can come from failsafe or RC option
|
|
|
|
void Copter::set_mode_auto_do_land_start_or_RTL(ModeReason reason)
|
|
|
|
{
|
2021-08-16 04:14:14 -03:00
|
|
|
#if MODE_AUTO_ENABLED == ENABLED
|
2021-10-10 14:28:50 -03:00
|
|
|
if (set_mode(Mode::Number::AUTO_RTL, reason)) {
|
2021-08-16 04:14:14 -03:00
|
|
|
AP_Notify::events.failsafe_mode_change = 1;
|
2021-07-24 20:25:40 -03:00
|
|
|
return;
|
|
|
|
}
|
2021-08-16 04:14:14 -03:00
|
|
|
#endif
|
2021-07-24 20:25:40 -03:00
|
|
|
|
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "Trying RTL Mode");
|
|
|
|
set_mode_RTL_or_land_with_pause(reason);
|
|
|
|
}
|
|
|
|
|
2023-03-06 21:41:50 -04:00
|
|
|
// Sets mode to Brake or LAND with 4 second delay before descent starts
|
|
|
|
// This can come from failsafe or RC option
|
|
|
|
void Copter::set_mode_brake_or_land_with_pause(ModeReason reason)
|
|
|
|
{
|
|
|
|
#if MODE_BRAKE_ENABLED == ENABLED
|
|
|
|
if (set_mode(Mode::Number::BRAKE, reason)) {
|
|
|
|
AP_Notify::events.failsafe_mode_change = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "Trying Land Mode");
|
|
|
|
set_mode_land_with_pause(reason);
|
|
|
|
}
|
|
|
|
|
2016-01-11 18:19:49 -04:00
|
|
|
bool Copter::should_disarm_on_failsafe() {
|
2016-01-21 22:59:47 -04:00
|
|
|
if (ap.in_arming_delay) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-30 03:29:36 -04:00
|
|
|
switch (flightmode->mode_number()) {
|
2019-09-07 20:33:56 -03:00
|
|
|
case Mode::Number::STABILIZE:
|
|
|
|
case Mode::Number::ACRO:
|
2016-01-11 18:19:49 -04:00
|
|
|
// if throttle is zero OR vehicle is landed disarm motors
|
|
|
|
return ap.throttle_zero || ap.land_complete;
|
2019-09-07 20:33:56 -03:00
|
|
|
case Mode::Number::AUTO:
|
2021-07-25 07:27:51 -03:00
|
|
|
case Mode::Number::AUTO_RTL:
|
2016-01-11 18:19:49 -04:00
|
|
|
// if mission has not started AND vehicle is landed, disarm motors
|
|
|
|
return !ap.auto_armed && ap.land_complete;
|
|
|
|
default:
|
|
|
|
// used for AltHold, Guided, Loiter, RTL, Circle, Drift, Sport, Flip, Autotune, PosHold
|
|
|
|
// if landed disarm
|
|
|
|
return ap.land_complete;
|
|
|
|
}
|
|
|
|
}
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
|
2021-08-04 05:58:08 -03:00
|
|
|
void Copter::do_failsafe_action(FailsafeAction action, ModeReason reason){
|
2019-09-21 21:09:18 -03:00
|
|
|
|
|
|
|
// Execute the specified desired_action
|
|
|
|
switch (action) {
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::NONE:
|
2019-09-21 21:09:18 -03:00
|
|
|
return;
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::LAND:
|
2019-09-21 21:09:18 -03:00
|
|
|
set_mode_land_with_pause(reason);
|
|
|
|
break;
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::RTL:
|
2019-09-21 21:09:18 -03:00
|
|
|
set_mode_RTL_or_land_with_pause(reason);
|
|
|
|
break;
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::SMARTRTL:
|
2019-09-21 21:09:18 -03:00
|
|
|
set_mode_SmartRTL_or_RTL(reason);
|
|
|
|
break;
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::SMARTRTL_LAND:
|
2019-09-21 21:09:18 -03:00
|
|
|
set_mode_SmartRTL_or_land_with_pause(reason);
|
|
|
|
break;
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::TERMINATE: {
|
2019-09-21 21:09:18 -03:00
|
|
|
#if ADVANCED_FAILSAFE == ENABLED
|
2020-10-01 23:07:18 -03:00
|
|
|
g2.afs.gcs_terminate(true, "Failsafe");
|
2019-09-21 21:09:18 -03:00
|
|
|
#else
|
2020-02-21 09:09:57 -04:00
|
|
|
arming.disarm(AP_Arming::Method::FAILSAFE_ACTION_TERMINATE);
|
2019-09-21 21:09:18 -03:00
|
|
|
#endif
|
2021-08-16 04:14:14 -03:00
|
|
|
break;
|
2020-10-01 23:07:18 -03:00
|
|
|
}
|
2021-08-04 05:58:08 -03:00
|
|
|
case FailsafeAction::AUTO_DO_LAND_START:
|
2021-07-24 20:25:40 -03:00
|
|
|
set_mode_auto_do_land_start_or_RTL(reason);
|
|
|
|
break;
|
2023-03-06 21:41:50 -04:00
|
|
|
case FailsafeAction::BRAKE_LAND:
|
|
|
|
set_mode_brake_or_land_with_pause(reason);
|
|
|
|
break;
|
2019-09-21 21:09:18 -03:00
|
|
|
}
|
2020-08-14 16:40:20 -03:00
|
|
|
|
2022-09-20 04:37:48 -03:00
|
|
|
#if AP_GRIPPER_ENABLED
|
2020-08-14 16:40:20 -03:00
|
|
|
if (failsafe_option(FailsafeOption::RELEASE_GRIPPER)) {
|
2024-02-21 02:40:35 -04:00
|
|
|
gripper.release();
|
2020-08-14 16:40:20 -03:00
|
|
|
}
|
|
|
|
#endif
|
2019-09-21 21:09:18 -03:00
|
|
|
}
|
|
|
|
|