2015-05-13 03:09:36 -03:00
|
|
|
#include "Plane.h"
|
|
|
|
|
2011-12-21 08:25:51 -04:00
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* failsafe support
|
|
|
|
* Andrew Tridgell, December 2011
|
2011-12-21 08:25:51 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* our failsafe strategy is to detect main loop lockup and switch to
|
|
|
|
* passing inputs straight from the RC inputs to RC outputs.
|
2011-12-21 08:25:51 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-08-16 21:50:15 -03:00
|
|
|
* this failsafe_check function is called from the core timer interrupt
|
|
|
|
* at 1kHz.
|
2011-12-21 08:25:51 -04:00
|
|
|
*/
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::failsafe_check(void)
|
2011-12-21 08:25:51 -04:00
|
|
|
{
|
2017-11-13 01:59:28 -04:00
|
|
|
static uint16_t last_ticks;
|
2011-12-21 08:25:51 -04:00
|
|
|
static uint32_t last_timestamp;
|
|
|
|
static bool in_failsafe;
|
2015-05-13 19:05:32 -03:00
|
|
|
uint32_t tnow = micros();
|
2011-12-21 08:25:51 -04:00
|
|
|
|
2017-11-13 01:59:28 -04:00
|
|
|
const uint16_t ticks = scheduler.ticks();
|
|
|
|
if (ticks != last_ticks) {
|
2011-12-21 08:25:51 -04:00
|
|
|
// the main loop is running, all is OK
|
2017-11-13 01:59:28 -04:00
|
|
|
last_ticks = ticks;
|
2011-12-21 08:25:51 -04:00
|
|
|
last_timestamp = tnow;
|
|
|
|
in_failsafe = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tnow - last_timestamp > 200000) {
|
|
|
|
// we have gone at least 0.2 seconds since the main loop
|
2012-08-16 21:50:15 -03:00
|
|
|
// ran. That means we're in trouble, or perhaps are in
|
2011-12-21 08:25:51 -04:00
|
|
|
// an initialisation routine or log erase. Start passing RC
|
|
|
|
// inputs through to outputs
|
|
|
|
in_failsafe = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_failsafe && tnow - last_timestamp > 20000) {
|
2019-04-22 04:03:23 -03:00
|
|
|
|
|
|
|
// ensure we have the latest RC inputs
|
|
|
|
rc().read_input();
|
|
|
|
|
2011-12-21 08:25:51 -04:00
|
|
|
last_timestamp = tnow;
|
2014-08-25 06:45:39 -03:00
|
|
|
|
2019-04-20 00:08:06 -03:00
|
|
|
rc().read_input();
|
|
|
|
|
2023-02-06 01:39:02 -04:00
|
|
|
#if AP_ADVANCEDFAILSAFE_ENABLED
|
2014-09-23 22:03:35 -03:00
|
|
|
if (in_calibration) {
|
|
|
|
// tell the failsafe system that we are calibrating
|
|
|
|
// sensors, so don't trigger failsafe
|
2016-07-22 04:45:05 -03:00
|
|
|
afs.heartbeat();
|
2014-09-23 22:03:35 -03:00
|
|
|
}
|
2019-01-08 21:05:40 -04:00
|
|
|
#endif
|
2014-09-23 22:03:35 -03:00
|
|
|
|
2018-04-03 23:17:05 -03:00
|
|
|
if (RC_Channels::get_valid_channel_count() < 5) {
|
2014-08-25 06:45:39 -03:00
|
|
|
// we don't have any RC input to pass through
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// pass RC inputs to outputs every 20ms
|
2018-04-03 23:17:05 -03:00
|
|
|
RC_Channels::clear_overrides();
|
2013-06-28 21:14:57 -03:00
|
|
|
|
2021-09-18 15:02:12 -03:00
|
|
|
float roll = roll_in_expo(false);
|
|
|
|
float pitch = pitch_in_expo(false);
|
|
|
|
float throttle = get_throttle_input(true);
|
|
|
|
float rudder = rudder_in_expo(false);
|
2014-11-13 20:27:32 -04:00
|
|
|
|
2023-02-10 22:36:33 -04:00
|
|
|
if (!arming.is_armed_and_safety_off()) {
|
2016-10-22 07:27:57 -03:00
|
|
|
throttle = 0;
|
|
|
|
}
|
|
|
|
|
2013-06-28 21:14:57 -03:00
|
|
|
// setup secondary output channels that don't have
|
|
|
|
// corresponding input channels
|
2016-10-22 07:27:57 -03:00
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_aileron, roll);
|
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_elevator, pitch);
|
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_rudder, rudder);
|
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_steering, rudder);
|
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_throttle, throttle);
|
2013-06-28 21:14:57 -03:00
|
|
|
|
2014-04-20 22:51:39 -03:00
|
|
|
// this is to allow the failsafe module to deliberately crash
|
|
|
|
// the plane. Only used in extreme circumstances to meet the
|
|
|
|
// OBC rules
|
2023-02-06 01:39:02 -04:00
|
|
|
#if AP_ADVANCEDFAILSAFE_ENABLED
|
2016-07-22 05:14:53 -03:00
|
|
|
if (afs.should_crash_vehicle()) {
|
|
|
|
afs.terminate_vehicle();
|
2019-08-21 03:01:17 -03:00
|
|
|
if (!afs.terminating_vehicle_via_landing()) {
|
|
|
|
return;
|
|
|
|
}
|
2016-07-22 05:14:53 -03:00
|
|
|
}
|
2019-01-08 21:05:40 -04:00
|
|
|
#endif
|
2014-04-20 22:51:39 -03:00
|
|
|
|
2013-06-28 21:14:57 -03:00
|
|
|
// setup secondary output channels that do have
|
|
|
|
// corresponding input channels
|
2016-10-22 07:27:57 -03:00
|
|
|
SRV_Channels::copy_radio_in_out(SRV_Channel::k_manual, true);
|
2021-09-18 15:02:12 -03:00
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_flap, 0.0);
|
|
|
|
SRV_Channels::set_output_scaled(SRV_Channel::k_flap_auto, 0.0);
|
2014-02-05 23:09:49 -04:00
|
|
|
|
|
|
|
// setup flaperons
|
2022-01-06 21:34:34 -04:00
|
|
|
flaperon_update();
|
2017-06-15 04:21:05 -03:00
|
|
|
|
|
|
|
servos_output();
|
2020-02-28 20:12:29 -04:00
|
|
|
|
|
|
|
// in SITL we send through the servo outputs so we can verify
|
|
|
|
// we're manipulating surfaces
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2020-03-25 22:24:37 -03:00
|
|
|
GCS_MAVLINK *chan = gcs().chan(0);
|
|
|
|
if (HAVE_PAYLOAD_SPACE(chan->get_chan(), SERVO_OUTPUT_RAW)) {
|
|
|
|
chan->send_servo_output_raw();
|
|
|
|
}
|
2020-02-28 20:12:29 -04:00
|
|
|
#endif
|
2011-12-21 08:25:51 -04:00
|
|
|
}
|
|
|
|
}
|