ardupilot/ArduPlane/events.cpp

160 lines
4.2 KiB
C++
Raw Normal View History

2015-05-13 03:09:36 -03:00
#include "Plane.h"
2016-08-13 04:54:37 -03:00
void Plane::failsafe_short_on_event(enum failsafe_state fstype, mode_reason_t reason)
{
2012-08-16 21:50:15 -03:00
// This is how to handle a short loss of control signal failsafe.
failsafe.state = fstype;
failsafe.ch3_timer_ms = millis();
2017-09-22 00:31:44 -03:00
gcs().send_text(MAV_SEVERITY_WARNING, "Failsafe. Short event on: type=%u/reason=%u", fstype, reason);
2012-08-16 21:50:15 -03:00
switch(control_mode)
{
case MANUAL:
case STABILIZE:
case ACRO:
case FLY_BY_WIRE_A:
case AUTOTUNE:
case FLY_BY_WIRE_B:
case CRUISE:
case TRAINING:
failsafe.saved_mode = control_mode;
failsafe.saved_mode_set = 1;
if(g.short_fs_action == 2) {
2016-08-13 04:54:37 -03:00
set_mode(FLY_BY_WIRE_A, reason);
} else {
2016-08-13 04:54:37 -03:00
set_mode(CIRCLE, reason);
}
2012-08-16 21:50:15 -03:00
break;
case QSTABILIZE:
case QLOITER:
case QHOVER:
failsafe.saved_mode = control_mode;
failsafe.saved_mode_set = 1;
2016-08-13 04:54:37 -03:00
set_mode(QLAND, reason);
break;
2012-08-16 21:50:15 -03:00
case AUTO:
case AVOID_ADSB:
2012-08-16 21:50:15 -03:00
case GUIDED:
case LOITER:
if(g.short_fs_action != 0) {
failsafe.saved_mode = control_mode;
failsafe.saved_mode_set = 1;
if(g.short_fs_action == 2) {
2016-08-13 04:54:37 -03:00
set_mode(FLY_BY_WIRE_A, reason);
} else {
2016-08-13 04:54:37 -03:00
set_mode(CIRCLE, reason);
}
2012-08-16 21:50:15 -03:00
}
break;
case CIRCLE:
case RTL:
case QLAND:
case QRTL:
2012-08-16 21:50:15 -03:00
default:
break;
}
gcs().send_text(MAV_SEVERITY_INFO, "Flight mode = %u", (unsigned)control_mode);
}
2016-08-13 04:54:37 -03:00
void Plane::failsafe_long_on_event(enum failsafe_state fstype, mode_reason_t reason)
{
2012-08-16 21:50:15 -03:00
// This is how to handle a long loss of control signal failsafe.
2017-09-22 00:31:44 -03:00
gcs().send_text(MAV_SEVERITY_WARNING, "Failsafe. Long event on: type=%u/reason=%u", fstype, reason);
2012-12-04 18:22:21 -04:00
// If the GCS is locked up we allow control to revert to RC
hal.rcin->clear_overrides();
failsafe.state = fstype;
2012-08-16 21:50:15 -03:00
switch(control_mode)
{
case MANUAL:
case STABILIZE:
case ACRO:
case FLY_BY_WIRE_A:
case AUTOTUNE:
case FLY_BY_WIRE_B:
case CRUISE:
case TRAINING:
2012-08-16 21:50:15 -03:00
case CIRCLE:
2016-01-11 11:29:03 -04:00
if(g.long_fs_action == 3) {
#if PARACHUTE == ENABLED
parachute_release();
#endif
} else if (g.long_fs_action == 2) {
2016-08-13 04:54:37 -03:00
set_mode(FLY_BY_WIRE_A, reason);
} else {
2016-08-13 04:54:37 -03:00
set_mode(RTL, reason);
}
2012-08-16 21:50:15 -03:00
break;
case QSTABILIZE:
case QHOVER:
case QLOITER:
2016-08-13 04:54:37 -03:00
set_mode(QLAND, reason);
break;
2012-08-16 21:50:15 -03:00
case AUTO:
case AVOID_ADSB:
2012-08-16 21:50:15 -03:00
case GUIDED:
case LOITER:
2016-01-11 11:29:03 -04:00
if(g.long_fs_action == 3) {
#if PARACHUTE == ENABLED
parachute_release();
#endif
} else if (g.long_fs_action == 2) {
2016-08-13 04:54:37 -03:00
set_mode(FLY_BY_WIRE_A, reason);
} else if (g.long_fs_action == 1) {
2016-08-13 04:54:37 -03:00
set_mode(RTL, reason);
2012-08-16 21:50:15 -03:00
}
break;
case RTL:
case QLAND:
case QRTL:
2012-08-16 21:50:15 -03:00
default:
break;
}
gcs().send_text(MAV_SEVERITY_INFO, "Flight mode = %u", (unsigned)control_mode);
}
2016-08-13 04:54:37 -03:00
void Plane::failsafe_short_off_event(mode_reason_t reason)
{
2012-08-16 21:50:15 -03:00
// We're back in radio contact
2017-09-22 00:31:44 -03:00
gcs().send_text(MAV_SEVERITY_WARNING, "Failsafe. Short event off: reason=%u", reason);
failsafe.state = FAILSAFE_NONE;
2012-08-16 21:50:15 -03:00
// re-read the switch so we can return to our preferred mode
// --------------------------------------------------------
if (control_mode == CIRCLE && failsafe.saved_mode_set) {
failsafe.saved_mode_set = 0;
2016-08-13 04:54:37 -03:00
set_mode(failsafe.saved_mode, reason);
}
}
2017-09-22 00:31:44 -03:00
void Plane::failsafe_long_off_event(mode_reason_t reason)
{
// We're back in radio contact
gcs().send_text(MAV_SEVERITY_WARNING, "Failsafe. Long event off: reason=%u", reason);
failsafe.state = FAILSAFE_NONE;
}
2015-05-13 03:09:36 -03:00
void Plane::low_battery_event(void)
{
2013-09-29 09:54:39 -03:00
if (failsafe.low_battery) {
return;
}
gcs().send_text(MAV_SEVERITY_WARNING, "Low battery %.2fV used %.0f mAh",
(double)battery.voltage(), (double)battery.current_total_mah());
if (flight_stage != AP_Vehicle::FixedWing::FLIGHT_LAND) {
2016-08-13 04:54:37 -03:00
set_mode(RTL, MODE_REASON_BATTERY_FAILSAFE);
aparm.throttle_cruise.load();
}
2013-09-29 09:54:39 -03:00
failsafe.low_battery = true;
AP_Notify::flags.failsafe_battery = true;
}
2015-05-13 03:09:36 -03:00
void Plane::update_events(void)
{
2014-01-20 00:36:31 -04:00
ServoRelayEvents.update_events();
}