2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2014-01-24 02:47:42 -04:00
|
|
|
/*
|
2016-07-25 15:45:29 -03:00
|
|
|
* Init and run calls for stabilize flight mode
|
2014-01-24 02:47:42 -04:00
|
|
|
*/
|
|
|
|
|
2013-12-06 02:08:11 -04:00
|
|
|
// stabilize_run - runs the main stabilize controller
|
|
|
|
// should be called at 100hz or more
|
2019-05-09 23:18:49 -03:00
|
|
|
void ModeStabilize::run()
|
2013-12-06 02:08:11 -04:00
|
|
|
{
|
2019-02-28 05:03:23 -04:00
|
|
|
// apply simple mode transform to pilot inputs
|
2013-12-06 02:08:11 -04:00
|
|
|
update_simple_mode();
|
|
|
|
|
|
|
|
// convert pilot input to lean angles
|
2019-02-28 05:03:23 -04:00
|
|
|
float target_roll, target_pitch;
|
2018-10-03 00:14:44 -03:00
|
|
|
get_pilot_desired_lean_angles(target_roll, target_pitch, copter.aparm.angle_max, copter.aparm.angle_max);
|
2013-12-06 02:08:11 -04:00
|
|
|
|
2013-12-18 08:47:09 -04:00
|
|
|
// get pilot's desired yaw rate
|
2021-09-17 02:54:19 -03:00
|
|
|
float target_yaw_rate = get_pilot_desired_yaw_rate(channel_yaw->norm_input_dz());
|
2019-02-28 05:03:23 -04:00
|
|
|
|
|
|
|
if (!motors->armed()) {
|
|
|
|
// Motors should be Stopped
|
2019-04-09 09:16:58 -03:00
|
|
|
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::SHUT_DOWN);
|
2022-09-03 11:21:46 -03:00
|
|
|
} else if (copter.ap.throttle_zero
|
|
|
|
|| (copter.air_mode == AirMode::AIRMODE_ENABLED && motors->get_spool_state() == AP_Motors::SpoolState::SHUT_DOWN)) {
|
|
|
|
// throttle_zero is never true in air mode, but the motors should be allowed to go through ground idle
|
|
|
|
// in order to facilitate the spoolup block
|
|
|
|
|
2019-02-28 05:03:23 -04:00
|
|
|
// Attempting to Land
|
2019-04-09 09:16:58 -03:00
|
|
|
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
|
2019-02-28 05:03:23 -04:00
|
|
|
} else {
|
2019-04-09 09:16:58 -03:00
|
|
|
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
|
2019-02-28 05:03:23 -04:00
|
|
|
}
|
|
|
|
|
2022-09-06 15:51:21 -03:00
|
|
|
float pilot_desired_throttle = get_pilot_desired_throttle();
|
2022-06-28 08:19:10 -03:00
|
|
|
|
2019-04-09 09:16:58 -03:00
|
|
|
switch (motors->get_spool_state()) {
|
|
|
|
case AP_Motors::SpoolState::SHUT_DOWN:
|
2019-02-28 05:03:23 -04:00
|
|
|
// Motors Stopped
|
2021-05-24 10:42:19 -03:00
|
|
|
attitude_control->reset_yaw_target_and_rate();
|
2019-02-28 05:03:23 -04:00
|
|
|
attitude_control->reset_rate_controller_I_terms();
|
2022-09-06 15:51:21 -03:00
|
|
|
pilot_desired_throttle = 0.0f;
|
2019-04-09 09:16:58 -03:00
|
|
|
break;
|
2019-11-03 22:54:47 -04:00
|
|
|
|
2019-04-09 09:16:58 -03:00
|
|
|
case AP_Motors::SpoolState::GROUND_IDLE:
|
2019-02-28 05:03:23 -04:00
|
|
|
// Landed
|
2021-05-24 10:42:19 -03:00
|
|
|
attitude_control->reset_yaw_target_and_rate();
|
2020-12-20 17:40:58 -04:00
|
|
|
attitude_control->reset_rate_controller_I_terms_smoothly();
|
2022-09-06 15:51:21 -03:00
|
|
|
pilot_desired_throttle = 0.0f;
|
2019-04-09 09:16:58 -03:00
|
|
|
break;
|
2019-11-03 22:54:47 -04:00
|
|
|
|
2019-04-09 09:16:58 -03:00
|
|
|
case AP_Motors::SpoolState::THROTTLE_UNLIMITED:
|
2019-02-28 05:03:23 -04:00
|
|
|
// clear landing flag above zero throttle
|
|
|
|
if (!motors->limit.throttle_lower) {
|
|
|
|
set_land_complete(false);
|
|
|
|
}
|
2019-04-09 09:16:58 -03:00
|
|
|
break;
|
2019-11-03 22:54:47 -04:00
|
|
|
|
2019-04-09 09:16:58 -03:00
|
|
|
case AP_Motors::SpoolState::SPOOLING_UP:
|
|
|
|
case AP_Motors::SpoolState::SPOOLING_DOWN:
|
|
|
|
// do nothing
|
|
|
|
break;
|
2019-02-28 05:03:23 -04:00
|
|
|
}
|
2013-12-06 02:08:11 -04:00
|
|
|
|
2014-07-08 05:34:19 -03:00
|
|
|
// call attitude controller
|
2017-06-26 05:48:04 -03:00
|
|
|
attitude_control->input_euler_angle_roll_pitch_euler_rate_yaw(target_roll, target_pitch, target_yaw_rate);
|
2013-12-06 02:08:11 -04:00
|
|
|
|
2014-01-11 04:30:50 -04:00
|
|
|
// output pilot's throttle
|
2022-09-06 15:51:21 -03:00
|
|
|
attitude_control->set_throttle_out(pilot_desired_throttle, true, g.throttle_filt);
|
2013-12-06 02:08:11 -04:00
|
|
|
}
|