2015-12-30 18:57:56 -04:00
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
2016-01-14 15:30:56 -04:00
# include "Sub.h"
2015-12-30 18:57:56 -04:00
/*
* flight . pde - high level calls to set and update flight modes
* logic for individual flight modes is in control_acro . pde , control_stabilize . pde , etc
*/
// set_mode - change flight mode and perform any necessary initialisation
// optional force parameter used to force the flight mode change (used only first time mode is set)
// returns true if mode was succesfully set
// ACRO, STABILIZE, ALTHOLD, LAND, DRIFT and SPORT can always be set successfully but the return state of other flight modes should be checked and the caller should deal with failures appropriately
2016-04-18 01:38:21 -03:00
bool Sub : : set_mode ( control_mode_t mode , mode_reason_t reason )
2015-12-30 18:57:56 -04:00
{
// boolean to record if flight mode could be set
bool success = false ;
bool ignore_checks = ! motors . armed ( ) ; // allow switching to any mode if disarmed. We rely on the arming check to perform
// return immediately if we are already in the desired mode
if ( mode = = control_mode ) {
2016-04-18 01:38:21 -03:00
prev_control_mode = control_mode ;
prev_control_mode_reason = control_mode_reason ;
control_mode_reason = reason ;
2015-12-30 18:57:56 -04:00
return true ;
}
switch ( mode ) {
case ACRO :
2016-02-23 02:15:15 -04:00
success = acro_init ( ignore_checks ) ;
2015-12-30 18:57:56 -04:00
break ;
case STABILIZE :
2016-02-23 02:15:15 -04:00
success = stabilize_init ( ignore_checks ) ;
2015-12-30 18:57:56 -04:00
break ;
case ALT_HOLD :
success = althold_init ( ignore_checks ) ;
break ;
case AUTO :
success = auto_init ( ignore_checks ) ;
break ;
case CIRCLE :
success = circle_init ( ignore_checks ) ;
break ;
2016-08-31 23:47:04 -03:00
case VELHOLD :
success = velhold_init ( ignore_checks ) ;
2015-12-30 18:57:56 -04:00
break ;
case GUIDED :
success = guided_init ( ignore_checks ) ;
break ;
2016-08-25 00:08:30 -03:00
case SURFACE :
success = surface_init ( ignore_checks ) ;
2015-12-30 18:57:56 -04:00
break ;
case RTL :
success = rtl_init ( ignore_checks ) ;
break ;
case DRIFT :
success = drift_init ( ignore_checks ) ;
break ;
2016-10-11 17:34:29 -03:00
# if TRANSECT_ENABLED == ENABLED
2016-08-31 23:47:04 -03:00
case TRANSECT :
success = transect_init ( ignore_checks ) ;
2015-12-30 18:57:56 -04:00
break ;
2016-10-11 17:34:29 -03:00
# endif
2015-12-30 18:57:56 -04:00
case FLIP :
success = flip_init ( ignore_checks ) ;
break ;
# if AUTOTUNE_ENABLED == ENABLED
case AUTOTUNE :
success = autotune_init ( ignore_checks ) ;
break ;
# endif
# if POSHOLD_ENABLED == ENABLED
case POSHOLD :
success = poshold_init ( ignore_checks ) ;
break ;
# endif
case BRAKE :
success = brake_init ( ignore_checks ) ;
break ;
2016-03-03 02:36:13 -04:00
case THROW :
success = throw_init ( ignore_checks ) ;
break ;
2016-06-26 01:07:27 -03:00
case MANUAL :
success = manual_init ( ignore_checks ) ;
break ;
2015-12-30 18:57:56 -04:00
default :
success = false ;
break ;
}
// update flight mode
if ( success ) {
// perform any cleanup required by previous flight mode
exit_mode ( control_mode , mode ) ;
2016-04-18 01:38:21 -03:00
prev_control_mode = control_mode ;
prev_control_mode_reason = control_mode_reason ;
2015-12-30 18:57:56 -04:00
control_mode = mode ;
2016-04-18 01:38:21 -03:00
control_mode_reason = reason ;
DataFlash . Log_Write_Mode ( control_mode , control_mode_reason ) ;
2015-12-30 18:57:56 -04:00
# if AC_FENCE == ENABLED
// pilot requested flight mode change during a fence breach indicates pilot is attempting to manually recover
// this flight mode change could be automatic (i.e. fence, battery, GPS or GCS failsafe)
// but it should be harmless to disable the fence temporarily in these situations as well
fence . manual_recovery_start ( ) ;
# endif
} else {
// Log error that we failed to enter desired flight mode
Log_Write_Error ( ERROR_SUBSYSTEM_FLIGHT_MODE , mode ) ;
}
// update notify object
if ( success ) {
notify_flight_mode ( control_mode ) ;
}
// return success or failure
return success ;
}
// update_flight_mode - calls the appropriate attitude controllers based on flight mode
// called at 100hz or more
2016-01-14 15:30:56 -04:00
void Sub : : update_flight_mode ( )
2015-12-30 18:57:56 -04:00
{
// Update EKF speed limit - used to limit speed when we are using optical flow
ahrs . getEkfControlLimits ( ekfGndSpdLimit , ekfNavVelGainScaler ) ;
switch ( control_mode ) {
case ACRO :
2016-02-23 02:15:15 -04:00
acro_run ( ) ;
2015-12-30 18:57:56 -04:00
break ;
case STABILIZE :
2016-02-23 02:15:15 -04:00
stabilize_run ( ) ;
2015-12-30 18:57:56 -04:00
break ;
case ALT_HOLD :
althold_run ( ) ;
break ;
case AUTO :
auto_run ( ) ;
break ;
case CIRCLE :
circle_run ( ) ;
break ;
2016-08-31 23:47:04 -03:00
case VELHOLD :
velhold_run ( ) ;
2015-12-30 18:57:56 -04:00
break ;
case GUIDED :
guided_run ( ) ;
break ;
2016-08-25 00:08:30 -03:00
case SURFACE :
surface_run ( ) ;
2015-12-30 18:57:56 -04:00
break ;
case RTL :
rtl_run ( ) ;
break ;
case DRIFT :
drift_run ( ) ;
break ;
2016-10-11 17:34:29 -03:00
# if TRANSECT_ENABLED == ENABLED
2016-08-31 23:47:04 -03:00
case TRANSECT :
transect_run ( ) ;
2015-12-30 18:57:56 -04:00
break ;
2016-10-11 17:34:29 -03:00
# endif
2015-12-30 18:57:56 -04:00
case FLIP :
flip_run ( ) ;
break ;
# if AUTOTUNE_ENABLED == ENABLED
case AUTOTUNE :
autotune_run ( ) ;
break ;
# endif
# if POSHOLD_ENABLED == ENABLED
case POSHOLD :
poshold_run ( ) ;
break ;
# endif
case BRAKE :
brake_run ( ) ;
break ;
2016-03-03 02:36:13 -04:00
case THROW :
throw_run ( ) ;
break ;
2016-06-26 01:07:27 -03:00
case MANUAL :
manual_run ( ) ;
break ;
2016-04-18 01:38:21 -03:00
default :
break ;
2015-12-30 18:57:56 -04:00
}
}
// exit_mode - high level call to organise cleanup as a flight mode is exited
2016-04-18 01:38:21 -03:00
void Sub : : exit_mode ( control_mode_t old_control_mode , control_mode_t new_control_mode )
2015-12-30 18:57:56 -04:00
{
# if AUTOTUNE_ENABLED == ENABLED
if ( old_control_mode = = AUTOTUNE ) {
autotune_stop ( ) ;
}
# endif
// stop mission when we leave auto mode
if ( old_control_mode = = AUTO ) {
if ( mission . state ( ) = = AP_Mission : : MISSION_RUNNING ) {
mission . stop ( ) ;
}
# if MOUNT == ENABLED
camera_mount . set_mode_to_default ( ) ;
# endif // MOUNT == ENABLED
}
2016-03-03 02:36:13 -04:00
if ( old_control_mode = = THROW ) {
throw_exit ( ) ;
}
2015-12-30 18:57:56 -04:00
// smooth throttle transition when switching from manual to automatic flight modes
if ( mode_has_manual_throttle ( old_control_mode ) & & ! mode_has_manual_throttle ( new_control_mode ) & & motors . armed ( ) & & ! ap . land_complete ) {
// this assumes all manual flight modes use get_pilot_desired_throttle to translate pilot input to output throttle
set_accel_throttle_I_from_pilot_throttle ( get_pilot_desired_throttle ( channel_throttle - > control_in ) ) ;
}
// cancel any takeoffs in progress
takeoff_stop ( ) ;
}
// returns true or false whether mode requires GPS
2016-04-18 01:38:21 -03:00
bool Sub : : mode_requires_GPS ( control_mode_t mode ) {
2015-12-30 18:57:56 -04:00
switch ( mode ) {
case AUTO :
case GUIDED :
2016-08-31 23:47:04 -03:00
case VELHOLD :
2015-12-30 18:57:56 -04:00
case RTL :
case CIRCLE :
case DRIFT :
case POSHOLD :
case BRAKE :
2016-03-03 02:36:13 -04:00
case THROW :
2016-08-31 23:47:04 -03:00
case TRANSECT :
2015-12-30 18:57:56 -04:00
return true ;
default :
return false ;
}
return false ;
}
// mode_has_manual_throttle - returns true if the flight mode has a manual throttle (i.e. pilot directly controls throttle)
2016-04-18 01:38:21 -03:00
bool Sub : : mode_has_manual_throttle ( control_mode_t mode ) {
2015-12-30 18:57:56 -04:00
switch ( mode ) {
case ACRO :
case STABILIZE :
2016-07-04 12:26:23 -03:00
case MANUAL :
2015-12-30 18:57:56 -04:00
return true ;
default :
return false ;
}
return false ;
}
// mode_allows_arming - returns true if vehicle can be armed in the specified mode
// arming_from_gcs should be set to true if the arming request comes from the ground station
2016-04-18 01:38:21 -03:00
bool Sub : : mode_allows_arming ( control_mode_t mode , bool arming_from_gcs ) {
2016-08-31 23:47:04 -03:00
if ( mode_has_manual_throttle ( mode ) | | mode = = VELHOLD | | mode = = ALT_HOLD | | mode = = POSHOLD | | mode = = DRIFT | | mode = = TRANSECT | | mode = = THROW | | ( arming_from_gcs & & mode = = GUIDED ) ) {
2015-12-30 18:57:56 -04:00
return true ;
}
return false ;
}
// notify_flight_mode - sets notify object based on flight mode. Only used for OreoLED notify device
2016-04-18 01:38:21 -03:00
void Sub : : notify_flight_mode ( control_mode_t mode ) {
2015-12-30 18:57:56 -04:00
switch ( mode ) {
case AUTO :
case GUIDED :
case RTL :
case CIRCLE :
2016-08-25 00:08:30 -03:00
case SURFACE :
2015-12-30 18:57:56 -04:00
// autopilot modes
AP_Notify : : flags . autopilot_mode = true ;
break ;
default :
// all other are manual flight modes
AP_Notify : : flags . autopilot_mode = false ;
break ;
}
}
//
// print_flight_mode - prints flight mode to serial port.
//
2016-01-14 15:30:56 -04:00
void Sub : : print_flight_mode ( AP_HAL : : BetterStream * port , uint8_t mode )
2015-12-30 18:57:56 -04:00
{
switch ( mode ) {
case STABILIZE :
port - > print ( " STABILIZE " ) ;
break ;
case ACRO :
port - > print ( " ACRO " ) ;
break ;
case ALT_HOLD :
port - > print ( " ALT_HOLD " ) ;
break ;
case AUTO :
port - > print ( " AUTO " ) ;
break ;
case GUIDED :
port - > print ( " GUIDED " ) ;
break ;
2016-08-31 23:47:04 -03:00
case VELHOLD :
port - > print ( " VELHOLD " ) ;
2015-12-30 18:57:56 -04:00
break ;
case RTL :
port - > print ( " RTL " ) ;
break ;
case CIRCLE :
port - > print ( " CIRCLE " ) ;
break ;
2016-08-25 00:08:30 -03:00
case SURFACE :
port - > print ( " SURFACE " ) ;
2015-12-30 18:57:56 -04:00
break ;
case OF_LOITER :
port - > print ( " OF_LOITER " ) ;
break ;
case DRIFT :
port - > print ( " DRIFT " ) ;
break ;
2016-08-31 23:47:04 -03:00
case TRANSECT :
port - > print ( " TRANSECT " ) ;
2015-12-30 18:57:56 -04:00
break ;
case FLIP :
port - > print ( " FLIP " ) ;
break ;
case AUTOTUNE :
port - > print ( " AUTOTUNE " ) ;
break ;
case POSHOLD :
port - > print ( " POSHOLD " ) ;
break ;
case BRAKE :
port - > print ( " BRAKE " ) ;
break ;
2016-03-03 02:36:13 -04:00
case THROW :
port - > print ( " THROW " ) ;
break ;
2016-07-04 13:46:37 -03:00
case MANUAL :
port - > print ( " MANUAL " ) ;
break ;
2015-12-30 18:57:56 -04:00
default :
port - > printf ( " Mode(%u) " , ( unsigned ) mode ) ;
break ;
}
}