2012-04-30 04:17:14 -03:00
|
|
|
/*
|
|
|
|
failsafe support
|
|
|
|
Andrew Tridgell, December 2011
|
|
|
|
*/
|
|
|
|
|
2015-05-13 00:16:45 -03:00
|
|
|
#include "Rover.h"
|
|
|
|
|
2012-04-30 04:17:14 -03:00
|
|
|
/*
|
|
|
|
our failsafe strategy is to detect main loop lockup and switch to
|
|
|
|
passing inputs straight from the RC inputs to RC outputs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
this failsafe_check function is called from the core timer interrupt
|
|
|
|
at 1kHz.
|
|
|
|
*/
|
2015-05-12 02:03:23 -03:00
|
|
|
void Rover::failsafe_check()
|
2012-04-30 04:17:14 -03:00
|
|
|
{
|
|
|
|
static uint16_t last_mainLoop_count;
|
2015-05-12 04:00:25 -03:00
|
|
|
static uint32_t last_timestamp;
|
|
|
|
static bool in_failsafe;
|
2015-11-19 23:04:16 -04:00
|
|
|
uint32_t tnow = AP_HAL::micros();
|
2012-04-30 04:17:14 -03:00
|
|
|
|
|
|
|
if (mainLoop_count != last_mainLoop_count) {
|
|
|
|
// the main loop is running, all is OK
|
|
|
|
last_mainLoop_count = mainLoop_count;
|
|
|
|
last_timestamp = tnow;
|
|
|
|
in_failsafe = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tnow - last_timestamp > 200000) {
|
|
|
|
// we have gone at least 0.2 seconds since the main loop
|
2016-12-20 09:33:16 -04:00
|
|
|
// ran. That means we're in trouble, or perhaps are in
|
2012-04-30 04:17:14 -03:00
|
|
|
// an initialisation routine or log erase. Start passing RC
|
|
|
|
// inputs through to outputs
|
|
|
|
in_failsafe = true;
|
|
|
|
}
|
|
|
|
|
2016-12-20 09:33:16 -04:00
|
|
|
if (in_failsafe && tnow - last_timestamp > 20000 &&
|
2013-06-03 06:33:59 -03:00
|
|
|
channel_throttle->read() >= (uint16_t)g.fs_throttle_value) {
|
2016-12-20 09:33:16 -04:00
|
|
|
// pass RC inputs to outputs every 20ms
|
2012-04-30 04:17:14 -03:00
|
|
|
last_timestamp = tnow;
|
2012-12-18 07:44:12 -04:00
|
|
|
hal.rcin->clear_overrides();
|
|
|
|
uint8_t start_ch = 0;
|
2016-12-20 09:33:16 -04:00
|
|
|
for (uint8_t ch=start_ch; ch < 4; ch++) {
|
2012-12-18 07:44:12 -04:00
|
|
|
hal.rcout->write(ch, hal.rcin->read(ch));
|
|
|
|
}
|
2017-01-06 06:31:10 -04:00
|
|
|
SRV_Channels::copy_radio_in_out(SRV_Channel::k_manual, true);
|
2012-04-30 04:17:14 -03:00
|
|
|
}
|
|
|
|
}
|
2015-05-12 04:00:25 -03:00
|
|
|
|
2017-01-30 10:21:55 -04:00
|
|
|
#if ADVANCED_FAILSAFE == ENABLED
|
|
|
|
/*
|
|
|
|
check for AFS failsafe check
|
|
|
|
*/
|
|
|
|
void Rover::afs_fs_check(void)
|
|
|
|
{
|
|
|
|
// perform AFS failsafe checks
|
|
|
|
g2.afs.check(rover.last_heartbeat_ms, false, failsafe.last_valid_rc_ms); // Rover don't have fence
|
|
|
|
}
|
|
|
|
#endif
|