2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2019-02-25 10:32:52 -04:00
|
|
|
#if MODE_SPORT_ENABLED == ENABLED
|
|
|
|
|
2014-01-28 04:31:31 -04:00
|
|
|
/*
|
2016-07-25 15:45:29 -03:00
|
|
|
* Init and run calls for sport flight mode
|
2014-01-28 04:31:31 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// sport_init - initialise sport controller
|
2019-05-09 23:18:49 -03:00
|
|
|
bool ModeSport::init(bool ignore_checks)
|
2014-01-28 04:31:31 -04:00
|
|
|
{
|
2021-05-19 11:07:38 -03:00
|
|
|
// set vertical speed and acceleration limits
|
2021-05-11 01:42:02 -03:00
|
|
|
pos_control->set_max_speed_accel_z(-get_pilot_speed_dn(), g.pilot_speed_up, g.pilot_accel_z);
|
2021-07-08 01:17:41 -03:00
|
|
|
pos_control->set_correction_speed_accel_z(-get_pilot_speed_dn(), g.pilot_speed_up, g.pilot_accel_z);
|
2014-04-29 23:17:59 -03:00
|
|
|
|
2021-05-19 11:07:38 -03:00
|
|
|
// initialise the vertical position controller
|
2017-01-09 03:31:26 -04:00
|
|
|
if (!pos_control->is_active_z()) {
|
2021-05-11 01:42:02 -03:00
|
|
|
pos_control->init_z_controller();
|
2016-10-14 09:28:32 -03:00
|
|
|
}
|
2014-04-29 23:17:59 -03:00
|
|
|
|
2014-01-28 04:31:31 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// sport_run - runs the sport controller
|
|
|
|
// should be called at 100hz or more
|
2019-05-09 23:18:49 -03:00
|
|
|
void ModeSport::run()
|
2014-01-28 04:31:31 -04:00
|
|
|
{
|
2021-05-19 11:07:38 -03:00
|
|
|
// set vertical speed and acceleration limits
|
2021-05-11 01:42:02 -03:00
|
|
|
pos_control->set_max_speed_accel_z(-get_pilot_speed_dn(), g.pilot_speed_up, g.pilot_accel_z);
|
2015-10-19 21:05:10 -03:00
|
|
|
|
2014-01-28 04:31:31 -04:00
|
|
|
// apply SIMPLE mode transform
|
|
|
|
update_simple_mode();
|
|
|
|
|
|
|
|
// get pilot's desired roll and pitch rates
|
2014-02-12 08:55:13 -04:00
|
|
|
|
|
|
|
// calculate rate requests
|
2022-06-15 00:08:53 -03:00
|
|
|
float target_roll_rate = channel_roll->get_control_in() * g2.command_model_acro_rp.get_rate() * 100.0 / ROLL_PITCH_YAW_INPUT_MAX;
|
|
|
|
float target_pitch_rate = channel_pitch->get_control_in() * g2.command_model_acro_rp.get_rate() * 100.0 / ROLL_PITCH_YAW_INPUT_MAX;
|
2014-05-07 05:25:46 -03:00
|
|
|
|
2017-05-23 02:02:33 -03:00
|
|
|
// get attitude targets
|
|
|
|
const Vector3f att_target = attitude_control->get_att_target_euler_cd();
|
|
|
|
|
|
|
|
// Calculate trainer mode earth frame rate command for roll
|
|
|
|
int32_t roll_angle = wrap_180_cd(att_target.x);
|
2014-05-07 05:25:46 -03:00
|
|
|
target_roll_rate -= constrain_int32(roll_angle, -ACRO_LEVEL_MAX_ANGLE, ACRO_LEVEL_MAX_ANGLE) * g.acro_balance_roll;
|
2014-02-12 08:55:13 -04:00
|
|
|
|
|
|
|
// Calculate trainer mode earth frame rate command for pitch
|
2017-05-23 02:02:33 -03:00
|
|
|
int32_t pitch_angle = wrap_180_cd(att_target.y);
|
2014-05-07 05:25:46 -03:00
|
|
|
target_pitch_rate -= constrain_int32(pitch_angle, -ACRO_LEVEL_MAX_ANGLE, ACRO_LEVEL_MAX_ANGLE) * g.acro_balance_pitch;
|
2014-02-12 08:55:13 -04:00
|
|
|
|
2018-10-03 00:14:44 -03:00
|
|
|
const float angle_max = copter.aparm.angle_max;
|
|
|
|
if (roll_angle > angle_max){
|
2022-06-15 00:08:53 -03:00
|
|
|
target_roll_rate += sqrt_controller(angle_max - roll_angle, g2.command_model_acro_rp.get_rate() * 100.0 / ACRO_LEVEL_MAX_OVERSHOOT, attitude_control->get_accel_roll_max_cdss(), G_Dt);
|
2018-10-03 00:14:44 -03:00
|
|
|
}else if (roll_angle < -angle_max) {
|
2022-06-15 00:08:53 -03:00
|
|
|
target_roll_rate += sqrt_controller(-angle_max - roll_angle, g2.command_model_acro_rp.get_rate() * 100.0 / ACRO_LEVEL_MAX_OVERSHOOT, attitude_control->get_accel_roll_max_cdss(), G_Dt);
|
2014-02-12 08:55:13 -04:00
|
|
|
}
|
|
|
|
|
2018-10-03 00:14:44 -03:00
|
|
|
if (pitch_angle > angle_max){
|
2022-06-15 00:08:53 -03:00
|
|
|
target_pitch_rate += sqrt_controller(angle_max - pitch_angle, g2.command_model_acro_rp.get_rate() * 100.0 / ACRO_LEVEL_MAX_OVERSHOOT, attitude_control->get_accel_pitch_max_cdss(), G_Dt);
|
2018-10-03 00:14:44 -03:00
|
|
|
}else if (pitch_angle < -angle_max) {
|
2022-06-15 00:08:53 -03:00
|
|
|
target_pitch_rate += sqrt_controller(-angle_max - pitch_angle, g2.command_model_acro_rp.get_rate() * 100.0 / ACRO_LEVEL_MAX_OVERSHOOT, attitude_control->get_accel_pitch_max_cdss(), G_Dt);
|
2014-02-12 08:55:13 -04:00
|
|
|
}
|
2014-01-28 04:31:31 -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());
|
2014-01-28 04:31:31 -04:00
|
|
|
|
|
|
|
// get pilot desired climb rate
|
2016-07-31 22:49:44 -03:00
|
|
|
float target_climb_rate = get_pilot_desired_climb_rate(channel_throttle->get_control_in());
|
2017-11-08 09:25:53 -04:00
|
|
|
target_climb_rate = constrain_float(target_climb_rate, -get_pilot_speed_dn(), g.pilot_speed_up);
|
2015-04-30 04:40:38 -03:00
|
|
|
|
2019-02-28 05:03:23 -04:00
|
|
|
// Sport State Machine Determination
|
|
|
|
AltHoldModeState sport_state = get_alt_hold_state(target_climb_rate);
|
2016-07-31 22:49:44 -03:00
|
|
|
|
|
|
|
// State Machine
|
|
|
|
switch (sport_state) {
|
|
|
|
|
2019-02-28 05:03:23 -04:00
|
|
|
case AltHold_MotorStopped:
|
2017-01-09 03:31:26 -04:00
|
|
|
attitude_control->reset_rate_controller_I_terms();
|
2021-07-09 09:12:25 -03:00
|
|
|
attitude_control->reset_yaw_target_and_rate(false);
|
2021-05-19 11:07:38 -03:00
|
|
|
pos_control->relax_z_controller(0.0f); // forces throttle output to decay to zero
|
2016-07-31 22:49:44 -03:00
|
|
|
break;
|
|
|
|
|
2022-09-25 20:18:44 -03:00
|
|
|
case AltHold_Landed_Ground_Idle:
|
|
|
|
attitude_control->reset_yaw_target_and_rate();
|
|
|
|
FALLTHROUGH;
|
|
|
|
|
|
|
|
case AltHold_Landed_Pre_Takeoff:
|
|
|
|
attitude_control->reset_rate_controller_I_terms_smoothly();
|
|
|
|
pos_control->relax_z_controller(0.0f); // forces throttle output to decay to zero
|
|
|
|
break;
|
|
|
|
|
2019-02-28 05:03:23 -04:00
|
|
|
case AltHold_Takeoff:
|
2016-07-31 22:49:44 -03:00
|
|
|
// initiate take-off
|
2018-03-16 03:22:14 -03:00
|
|
|
if (!takeoff.running()) {
|
|
|
|
takeoff.start(constrain_float(g.pilot_takeoff_alt,0.0f,1000.0f));
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
2014-01-28 04:31:31 -04:00
|
|
|
|
2017-01-05 02:24:02 -04:00
|
|
|
// get avoidance adjusted climb rate
|
|
|
|
target_climb_rate = get_avoidance_adjusted_climbrate(target_climb_rate);
|
|
|
|
|
2021-05-19 11:07:38 -03:00
|
|
|
// set position controller targets adjusted for pilot input
|
2021-05-13 02:40:05 -03:00
|
|
|
takeoff.do_pilot_takeoff(target_climb_rate);
|
2016-07-31 22:49:44 -03:00
|
|
|
break;
|
|
|
|
|
2019-02-28 05:03:23 -04:00
|
|
|
case AltHold_Flying:
|
2019-04-09 09:16:58 -03:00
|
|
|
motors->set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
|
2014-01-28 04:31:31 -04:00
|
|
|
|
2017-01-05 02:24:02 -04:00
|
|
|
// get avoidance adjusted climb rate
|
|
|
|
target_climb_rate = get_avoidance_adjusted_climbrate(target_climb_rate);
|
|
|
|
|
2021-08-31 01:17:59 -03:00
|
|
|
// update the vertical offset based on the surface measurement
|
|
|
|
copter.surface_tracking.update_surface_offset();
|
|
|
|
|
|
|
|
// Send the commanded climb rate to the position controller
|
|
|
|
pos_control->set_pos_target_z_from_climb_rate_cm(target_climb_rate);
|
2016-07-31 22:49:44 -03:00
|
|
|
break;
|
2014-01-28 04:31:31 -04:00
|
|
|
}
|
2019-02-28 05:03:23 -04:00
|
|
|
|
|
|
|
// call attitude controller
|
|
|
|
attitude_control->input_euler_rate_roll_pitch_yaw(target_roll_rate, target_pitch_rate, target_yaw_rate);
|
|
|
|
|
2021-05-19 11:07:38 -03:00
|
|
|
// run the vertical position controller and set output throttle
|
2019-02-28 05:03:23 -04:00
|
|
|
pos_control->update_z_controller();
|
2014-01-28 04:31:31 -04:00
|
|
|
}
|
2019-02-25 10:32:52 -04:00
|
|
|
|
|
|
|
#endif
|