2016-01-14 15:30:56 -04:00
|
|
|
#include "Sub.h"
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* control_circle.pde - init and run calls for circle flight mode
|
|
|
|
*/
|
|
|
|
|
|
|
|
// circle_init - initialise circle controller flight mode
|
2017-04-14 16:10:29 -03:00
|
|
|
bool Sub::circle_init()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2017-04-14 16:10:29 -03:00
|
|
|
if (!position_ok()) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-03-04 20:46:00 -04:00
|
|
|
|
2017-04-14 16:10:29 -03:00
|
|
|
circle_pilot_yaw_override = false;
|
2017-03-04 20:46:00 -04:00
|
|
|
|
2017-04-14 16:10:29 -03:00
|
|
|
// initialize speeds and accelerations
|
2021-04-27 03:50:06 -03:00
|
|
|
pos_control.set_max_speed_accel_xy(wp_nav.get_default_speed_xy(), wp_nav.get_wp_acceleration());
|
2021-07-08 01:16:08 -03:00
|
|
|
pos_control.set_correction_speed_accel_xy(wp_nav.get_default_speed_xy(), wp_nav.get_wp_acceleration());
|
2021-04-27 03:50:06 -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:16:08 -03:00
|
|
|
pos_control.set_correction_speed_accel_z(-get_pilot_speed_dn(), g.pilot_speed_up, g.pilot_accel_z);
|
2017-03-04 20:46:00 -04:00
|
|
|
|
2017-04-14 16:10:29 -03:00
|
|
|
// initialise circle controller including setting the circle center based on vehicle speed
|
|
|
|
circle_nav.init();
|
|
|
|
|
|
|
|
return true;
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// circle_run - runs the circle flight mode
|
|
|
|
// should be called at 100hz or more
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::circle_run()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
float target_yaw_rate = 0;
|
|
|
|
float target_climb_rate = 0;
|
|
|
|
|
2017-03-04 20:46:00 -04:00
|
|
|
// update parameters, to allow changing at runtime
|
2021-04-27 03:50:06 -03:00
|
|
|
pos_control.set_max_speed_accel_xy(wp_nav.get_default_speed_xy(), wp_nav.get_wp_acceleration());
|
|
|
|
pos_control.set_max_speed_accel_z(-get_pilot_speed_dn(), g.pilot_speed_up, g.pilot_accel_z);
|
2017-02-03 17:33:27 -04:00
|
|
|
|
2017-04-13 16:34:58 -03:00
|
|
|
// if not armed set throttle to zero and exit immediately
|
|
|
|
if (!motors.armed()) {
|
2015-12-30 18:57:56 -04:00
|
|
|
// To-Do: add some initialisation of position controllers
|
2019-04-09 20:09:55 -03:00
|
|
|
motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
|
2017-02-10 13:46:54 -04:00
|
|
|
// Sub vehicles do not stabilize roll/pitch/yaw when disarmed
|
2018-12-28 02:34:55 -04:00
|
|
|
attitude_control.set_throttle_out(0,true,g.throttle_filt);
|
|
|
|
attitude_control.relax_attitude_controllers();
|
2021-09-20 04:28:39 -03:00
|
|
|
circle_nav.init();
|
2015-12-30 18:57:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// process pilot inputs
|
2017-03-04 20:46:00 -04:00
|
|
|
// get pilot's desired yaw rate
|
|
|
|
target_yaw_rate = get_pilot_desired_yaw_rate(channel_yaw->get_control_in());
|
|
|
|
if (!is_zero(target_yaw_rate)) {
|
|
|
|
circle_pilot_yaw_override = true;
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
2017-03-04 20:46:00 -04:00
|
|
|
// get pilot desired climb rate
|
|
|
|
target_climb_rate = get_pilot_desired_climb_rate(channel_throttle->get_control_in());
|
|
|
|
|
2016-04-05 00:17:39 -03:00
|
|
|
// set motors to full range
|
2019-04-09 20:09:55 -03:00
|
|
|
motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
|
2016-04-05 00:17:39 -03:00
|
|
|
|
2015-12-30 18:57:56 -04:00
|
|
|
// run circle controller
|
2020-04-08 03:25:04 -03:00
|
|
|
failsafe_terrain_set_status(circle_nav.update());
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2017-03-04 20:46:00 -04:00
|
|
|
///////////////////////
|
|
|
|
// update xy outputs //
|
|
|
|
|
|
|
|
float lateral_out, forward_out;
|
|
|
|
translate_circle_nav_rp(lateral_out, forward_out);
|
|
|
|
|
|
|
|
// Send to forward/lateral outputs
|
|
|
|
motors.set_lateral(lateral_out);
|
|
|
|
motors.set_forward(forward_out);
|
|
|
|
|
2015-12-30 18:57:56 -04:00
|
|
|
// call attitude controller
|
|
|
|
if (circle_pilot_yaw_override) {
|
2017-07-09 23:49:42 -03:00
|
|
|
attitude_control.input_euler_angle_roll_pitch_euler_rate_yaw(channel_roll->get_control_in(), channel_pitch->get_control_in(), target_yaw_rate);
|
2017-02-03 17:33:27 -04:00
|
|
|
} else {
|
2017-07-09 23:49:42 -03:00
|
|
|
attitude_control.input_euler_angle_roll_pitch_yaw(channel_roll->get_control_in(), channel_pitch->get_control_in(), circle_nav.get_yaw(), true);
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// update altitude target and call position controller
|
2021-08-31 01:18:15 -03:00
|
|
|
pos_control.set_pos_target_z_from_climb_rate_cm(target_climb_rate);
|
2015-12-30 18:57:56 -04:00
|
|
|
pos_control.update_z_controller();
|
|
|
|
}
|