2011-03-19 07:20:11 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-02-18 23:59:58 -04:00
|
|
|
|
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
|
|
|
|
*/
|
2013-03-16 05:14:21 -03:00
|
|
|
static void failsafe_radio_on_event()
|
2011-02-17 03:28:49 -04:00
|
|
|
{
|
2012-11-13 10:43:54 -04:00
|
|
|
// if motors are not armed there is nothing to do
|
|
|
|
if( !motors.armed() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-16 21:50:02 -03:00
|
|
|
// This is how to handle a failsafe.
|
2012-11-11 09:11:12 -04:00
|
|
|
switch(control_mode) {
|
|
|
|
case STABILIZE:
|
|
|
|
case ACRO:
|
2013-08-04 03:56:35 -03:00
|
|
|
case SPORT:
|
2012-11-11 09:11:12 -04:00
|
|
|
// if throttle is zero disarm motors
|
|
|
|
if (g.rc_3.control_in == 0) {
|
|
|
|
init_disarm_motors();
|
2013-05-01 21:39:44 -03:00
|
|
|
}else if(g.failsafe_throttle == FS_THR_ENABLED_ALWAYS_LAND) {
|
|
|
|
// if failsafe_throttle is 3 (i.e. FS_THR_ENABLED_ALWAYS_LAND) land immediately
|
|
|
|
set_mode(LAND);
|
2013-07-19 23:01:10 -03:00
|
|
|
}else if(GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2012-11-11 09:11:12 -04:00
|
|
|
}else{
|
2012-12-21 01:39:48 -04:00
|
|
|
// We have no GPS or are very close to home so we will land
|
2012-12-10 10:38:43 -04:00
|
|
|
set_mode(LAND);
|
2012-11-11 09:11:12 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUTO:
|
2012-12-10 10:38:43 -04:00
|
|
|
// failsafe_throttle is 1 do RTL, 2 means continue with the mission
|
|
|
|
if (g.failsafe_throttle == FS_THR_ENABLED_ALWAYS_RTL) {
|
2013-07-19 23:01:10 -03:00
|
|
|
if(GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2012-12-21 01:39:48 -04:00
|
|
|
}else{
|
|
|
|
// We are very close to home so we will land
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2013-05-01 21:39:44 -03:00
|
|
|
}else if(g.failsafe_throttle == FS_THR_ENABLED_ALWAYS_LAND) {
|
|
|
|
// if failsafe_throttle is 3 (i.e. FS_THR_ENABLED_ALWAYS_LAND) land immediately
|
|
|
|
set_mode(LAND);
|
2012-11-11 09:11:12 -04:00
|
|
|
}
|
2012-12-10 10:38:43 -04:00
|
|
|
// if failsafe_throttle is 2 (i.e. FS_THR_ENABLED_CONTINUE_MISSION) no need to do anything
|
2012-11-11 09:11:12 -04:00
|
|
|
break;
|
2013-07-13 07:49:25 -03:00
|
|
|
case LAND:
|
|
|
|
// continue to land if battery failsafe is also active otherwise fall through to default handling
|
2013-10-13 01:52:52 -03:00
|
|
|
if (g.failsafe_battery_enabled && failsafe.battery) {
|
2013-07-13 07:49:25 -03:00
|
|
|
break;
|
|
|
|
}
|
2012-11-11 09:11:12 -04:00
|
|
|
default:
|
2013-05-01 21:39:44 -03:00
|
|
|
if(g.failsafe_throttle == FS_THR_ENABLED_ALWAYS_LAND) {
|
|
|
|
// if failsafe_throttle is 3 (i.e. FS_THR_ENABLED_ALWAYS_LAND) land immediately
|
|
|
|
set_mode(LAND);
|
2013-07-19 23:01:10 -03:00
|
|
|
}else if(GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)){
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2012-11-11 09:11:12 -04:00
|
|
|
}else{
|
2012-12-21 01:39:48 -04:00
|
|
|
// We have no GPS or are very close to home so we will land
|
|
|
|
set_mode(LAND);
|
2012-11-11 09:11:12 -04:00
|
|
|
}
|
|
|
|
break;
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2012-12-29 23:08:25 -04:00
|
|
|
|
|
|
|
// log the error to the dataflash
|
2013-03-16 05:14:21 -03:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_RADIO, ERROR_CODE_FAILSAFE_OCCURRED);
|
2012-12-29 23:08:25 -04:00
|
|
|
|
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
|
|
|
|
// we must be in AUTO, LAND or RTL modes
|
|
|
|
// or Stabilize or ACRO mode but with motors disarmed
|
2013-03-16 05:14:21 -03:00
|
|
|
static void 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
|
2013-03-16 05:14:21 -03:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_RADIO, ERROR_CODE_FAILSAFE_RESOLVED);
|
2011-02-17 03:28:49 -04:00
|
|
|
}
|
|
|
|
|
2013-10-13 01:52:52 -03:00
|
|
|
static void failsafe_battery_event(void)
|
2011-02-17 03:28:49 -04:00
|
|
|
{
|
2013-10-01 10:34:44 -03:00
|
|
|
// return immediately if low battery event has already been triggered
|
2013-10-13 01:52:52 -03:00
|
|
|
if (failsafe.battery) {
|
2013-10-01 10:34:44 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-13 10:43:54 -04:00
|
|
|
// failsafe check
|
2013-10-01 10:34:44 -03:00
|
|
|
if (g.failsafe_battery_enabled && motors.armed()) {
|
2012-11-13 10:43:54 -04:00
|
|
|
switch(control_mode) {
|
|
|
|
case STABILIZE:
|
|
|
|
case ACRO:
|
2013-08-04 03:56:35 -03:00
|
|
|
case SPORT:
|
2012-11-13 10:43:54 -04:00
|
|
|
// if throttle is zero disarm motors
|
|
|
|
if (g.rc_3.control_in == 0) {
|
|
|
|
init_disarm_motors();
|
|
|
|
}else{
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUTO:
|
2013-07-19 23:01:10 -03:00
|
|
|
// set_mode to RTL or LAND
|
|
|
|
if (GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2012-12-22 05:16:50 -04:00
|
|
|
}else{
|
|
|
|
// We have no GPS or are very close to home so we will land
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2012-11-13 10:43:54 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
set_mode(LAND);
|
|
|
|
break;
|
|
|
|
}
|
2012-06-04 22:31:40 -03:00
|
|
|
}
|
|
|
|
|
2012-11-13 10:43:54 -04:00
|
|
|
// set the low battery flag
|
2013-10-13 01:52:52 -03:00
|
|
|
set_failsafe_battery(true);
|
2012-11-13 10:43:54 -04:00
|
|
|
|
2012-12-29 23:08:25 -04:00
|
|
|
// warn the ground station and log to dataflash
|
|
|
|
gcs_send_text_P(SEVERITY_LOW,PSTR("Low Battery!"));
|
2013-03-16 05:14:21 -03:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_BATT, ERROR_CODE_FAILSAFE_OCCURRED);
|
2012-12-29 23:08:25 -04:00
|
|
|
|
2012-11-13 10:43:54 -04:00
|
|
|
#if COPTER_LEDS == ENABLED
|
2013-04-01 01:10:12 -03:00
|
|
|
piezo_on();
|
2012-11-13 10:43:54 -04:00
|
|
|
#endif // COPTER_LEDS
|
2011-02-17 03:28:49 -04:00
|
|
|
}
|
|
|
|
|
2013-03-16 05:27:46 -03:00
|
|
|
// failsafe_gps_check - check for gps failsafe
|
|
|
|
static void failsafe_gps_check()
|
|
|
|
{
|
|
|
|
uint32_t last_gps_update_ms;
|
|
|
|
|
|
|
|
// return immediately if gps failsafe is disabled
|
|
|
|
if( !g.failsafe_gps_enabled ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calc time since last gps update
|
2013-09-22 10:21:57 -03:00
|
|
|
last_gps_update_ms = millis() - gps_glitch.last_good_update();
|
2013-03-16 05:27:46 -03:00
|
|
|
|
|
|
|
// check if all is well
|
|
|
|
if( last_gps_update_ms < FAILSAFE_GPS_TIMEOUT_MS) {
|
|
|
|
// check for recovery from gps failsafe
|
2013-09-26 05:54:33 -03:00
|
|
|
if( failsafe.gps ) {
|
2013-03-16 05:27:46 -03:00
|
|
|
failsafe_gps_off_event();
|
|
|
|
set_failsafe_gps(false);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// do nothing if gps failsafe already triggered or motors disarmed
|
2013-09-26 05:54:33 -03:00
|
|
|
if( failsafe.gps || !motors.armed()) {
|
2013-03-16 05:27:46 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GPS failsafe event has occured
|
|
|
|
// update state, warn the ground station and log to dataflash
|
|
|
|
set_failsafe_gps(true);
|
|
|
|
gcs_send_text_P(SEVERITY_LOW,PSTR("Lost GPS!"));
|
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_GPS, ERROR_CODE_FAILSAFE_OCCURRED);
|
|
|
|
|
|
|
|
// take action based on flight mode
|
2013-05-29 17:12:24 -03:00
|
|
|
if(mode_requires_GPS(control_mode))
|
|
|
|
set_mode(LAND);
|
2013-06-25 23:56:58 -03:00
|
|
|
|
|
|
|
// land if circular fence is enabled
|
2013-07-06 00:22:05 -03:00
|
|
|
#if AC_FENCE == ENABLED
|
2013-06-25 23:56:58 -03:00
|
|
|
if((fence.get_enabled_fences() & AC_FENCE_TYPE_CIRCLE) != 0) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2013-07-06 00:22:05 -03:00
|
|
|
#endif
|
2013-03-16 05:27:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// failsafe_gps_off_event - actions to take when GPS contact is restored
|
|
|
|
static void failsafe_gps_off_event(void)
|
|
|
|
{
|
|
|
|
// log recovery of GPS in logs?
|
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_GPS, ERROR_CODE_FAILSAFE_RESOLVED);
|
|
|
|
}
|
2011-02-17 03:28:49 -04:00
|
|
|
|
2013-04-29 09:30:22 -03:00
|
|
|
// failsafe_gcs_check - check for ground station failsafe
|
|
|
|
static void failsafe_gcs_check()
|
|
|
|
{
|
|
|
|
uint32_t last_gcs_update_ms;
|
|
|
|
|
|
|
|
// return immediately if gcs failsafe is disabled, gcs has never been connected or we are not overriding rc controls from the gcs
|
2013-09-26 05:54:33 -03:00
|
|
|
if( g.failsafe_gcs == FS_GCS_DISABLED || failsafe.last_heartbeat_ms == 0 || !failsafe.rc_override_active) {
|
2013-04-29 09:30:22 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-20 08:44:56 -03:00
|
|
|
// calc time since last gcs update
|
2013-09-26 05:54:33 -03:00
|
|
|
last_gcs_update_ms = millis() - failsafe.last_heartbeat_ms;
|
2013-04-29 09:30:22 -03:00
|
|
|
|
|
|
|
// check if all is well
|
|
|
|
if( last_gcs_update_ms < FS_GCS_TIMEOUT_MS) {
|
2013-07-20 08:44:56 -03:00
|
|
|
// check for recovery from gcs failsafe
|
2013-09-26 05:54:33 -03:00
|
|
|
if (failsafe.gcs) {
|
2013-04-29 09:30:22 -03:00
|
|
|
failsafe_gcs_off_event();
|
|
|
|
set_failsafe_gcs(false);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-20 08:44:56 -03:00
|
|
|
// do nothing if gcs failsafe already triggered or motors disarmed
|
2013-09-26 05:54:33 -03:00
|
|
|
if( failsafe.gcs || !motors.armed()) {
|
2013-04-29 09:30:22 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GCS failsafe event has occured
|
|
|
|
// update state, log to dataflash
|
|
|
|
set_failsafe_gcs(true);
|
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_GCS, ERROR_CODE_FAILSAFE_OCCURRED);
|
|
|
|
|
|
|
|
// This is how to handle a failsafe.
|
|
|
|
// use the throttle failsafe setting to decide what to do
|
|
|
|
switch(control_mode) {
|
|
|
|
case STABILIZE:
|
|
|
|
case ACRO:
|
2013-08-04 03:56:35 -03:00
|
|
|
case SPORT:
|
2013-04-29 09:30:22 -03:00
|
|
|
// if throttle is zero disarm motors
|
|
|
|
if (g.rc_3.control_in == 0) {
|
|
|
|
init_disarm_motors();
|
2013-07-19 23:01:10 -03:00
|
|
|
}else if(GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2013-04-29 09:30:22 -03:00
|
|
|
}else{
|
|
|
|
// We have no GPS or are very close to home so we will land
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case AUTO:
|
|
|
|
// if g.failsafe_gcs is 1 do RTL, 2 means continue with the mission
|
|
|
|
if (g.failsafe_gcs == FS_GCS_ENABLED_ALWAYS_RTL) {
|
2013-07-19 23:01:10 -03:00
|
|
|
if (GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2013-04-29 09:30:22 -03:00
|
|
|
}else{
|
|
|
|
// We are very close to home so we will land
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if failsafe_throttle is 2 (i.e. FS_THR_ENABLED_CONTINUE_MISSION) no need to do anything
|
|
|
|
break;
|
|
|
|
default:
|
2013-07-19 23:01:10 -03:00
|
|
|
if(GPS_ok() && home_distance > wp_nav.get_waypoint_radius()) {
|
|
|
|
if (!set_mode(RTL)) {
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
2013-04-29 09:30:22 -03:00
|
|
|
}else{
|
|
|
|
// We have no GPS or are very close to home so we will land
|
|
|
|
set_mode(LAND);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-20 08:44:56 -03:00
|
|
|
// failsafe_gcs_off_event - actions to take when GCS contact is restored
|
2013-04-29 09:30:22 -03:00
|
|
|
static void failsafe_gcs_off_event(void)
|
|
|
|
{
|
2013-07-20 08:44:56 -03:00
|
|
|
// log recovery of GCS in logs?
|
2013-04-29 09:30:22 -03:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_FAILSAFE_GCS, ERROR_CODE_FAILSAFE_RESOLVED);
|
|
|
|
}
|
|
|
|
|
2012-08-16 21:50:02 -03:00
|
|
|
static void update_events() // Used for MAV_CMD_DO_REPEAT_SERVO and MAV_CMD_DO_REPEAT_RELAY
|
2011-02-17 03:28:49 -04:00
|
|
|
{
|
2012-08-16 21:50:02 -03:00
|
|
|
if(event_repeat == 0 || (millis() - event_timer) < event_delay)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(event_repeat != 0) { // event_repeat = -1 means repeat forever
|
|
|
|
event_timer = millis();
|
|
|
|
|
|
|
|
if (event_id >= CH_5 && event_id <= CH_8) {
|
|
|
|
if(event_repeat%2) {
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.rcout->write(event_id, event_value); // send to Servos
|
2012-08-16 21:50:02 -03:00
|
|
|
} else {
|
2012-12-12 21:25:09 -04:00
|
|
|
hal.rcout->write(event_id, event_undo_value);
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event_id == RELAY_TOGGLE) {
|
|
|
|
relay.toggle();
|
|
|
|
}
|
2012-12-22 04:26:27 -04:00
|
|
|
if (event_repeat > 0) {
|
|
|
|
event_repeat--;
|
|
|
|
}
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2011-02-17 03:28:49 -04:00
|
|
|
}
|
|
|
|
|