2016-01-14 15:30:56 -04:00
|
|
|
#include "Sub.h"
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
// stabilize_init - initialise stabilize controller
|
2017-04-14 16:10:29 -03:00
|
|
|
bool Sub::stabilize_init()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
// set target altitude to zero for reporting
|
2021-04-27 03:50:06 -03:00
|
|
|
pos_control.set_pos_target_z_cm(0);
|
2022-04-15 13:13:12 -03:00
|
|
|
if(prev_control_mode != control_mode_t::ALT_HOLD) {
|
|
|
|
last_roll = 0;
|
|
|
|
last_pitch = 0;
|
|
|
|
}
|
2016-08-24 19:21:29 -03:00
|
|
|
last_pilot_heading = ahrs.yaw_sensor;
|
2015-12-30 18:57:56 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// stabilize_run - runs the main stabilize controller
|
|
|
|
// should be called at 100hz or more
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::stabilize_run()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2016-04-05 00:17:39 -03:00
|
|
|
// if not armed set throttle to zero and exit immediately
|
2017-04-11 13:45:16 -03:00
|
|
|
if (!motors.armed()) {
|
2019-04-09 20:09:55 -03:00
|
|
|
motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
|
2018-12-28 02:34:55 -04:00
|
|
|
attitude_control.set_throttle_out(0,true,g.throttle_filt);
|
|
|
|
attitude_control.relax_attitude_controllers();
|
2016-08-24 19:21:29 -03:00
|
|
|
last_pilot_heading = ahrs.yaw_sensor;
|
2022-04-13 22:10:59 -03:00
|
|
|
last_roll = 0;
|
|
|
|
last_pitch = 0;
|
2015-12-30 18:57:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-13 22:10:59 -03:00
|
|
|
handle_attitude();
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
// output pilot's throttle
|
2017-02-03 00:18:27 -04:00
|
|
|
attitude_control.set_throttle_out(channel_throttle->norm_input(), false, g.throttle_filt);
|
2016-01-08 19:25:59 -04:00
|
|
|
|
2017-02-07 19:06:36 -04:00
|
|
|
//control_in is range -1000-1000
|
2016-01-08 19:25:59 -04:00
|
|
|
//radio_in is raw pwm value
|
2017-02-03 00:18:27 -04:00
|
|
|
motors.set_forward(channel_forward->norm_input());
|
|
|
|
motors.set_lateral(channel_lateral->norm_input());
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
2023-07-14 15:37:18 -03:00
|
|
|
|
|
|
|
|
|
|
|
void Sub::handle_attitude()
|
|
|
|
{
|
2023-07-16 11:12:45 -03:00
|
|
|
uint32_t tnow = AP_HAL::millis();
|
2023-07-14 15:37:18 -03:00
|
|
|
float desired_roll_rate, desired_pitch_rate, desired_yaw_rate;
|
|
|
|
// initialize vertical speeds and acceleration
|
|
|
|
pos_control.set_max_speed_accel_z(-get_pilot_speed_dn(), g.pilot_speed_up, g.pilot_accel_z);
|
|
|
|
motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
|
|
|
|
|
|
|
|
handle_mavlink_attitude_target();
|
|
|
|
|
|
|
|
get_pilot_desired_lean_angles(channel_roll->get_control_in(), channel_pitch->get_control_in(), desired_roll_rate, desired_pitch_rate, attitude_control.get_althold_lean_angle_max());
|
|
|
|
float yaw_input = channel_yaw->pwm_to_angle_dz_trim(channel_yaw->get_dead_zone() * gain, channel_yaw->get_radio_trim());
|
|
|
|
desired_yaw_rate = get_pilot_desired_yaw_rate(yaw_input);
|
|
|
|
|
2023-07-16 11:12:45 -03:00
|
|
|
switch (g.control_frame)
|
|
|
|
{
|
|
|
|
case MAV_FRAME_BODY_FRD:
|
|
|
|
{
|
|
|
|
if (abs(desired_roll_rate) > 50 || abs(desired_pitch_rate) > 50 || abs(desired_yaw_rate) > 50)
|
|
|
|
{
|
|
|
|
attitude_control.input_rate_bf_roll_pitch_yaw(desired_roll_rate, desired_pitch_rate, desired_yaw_rate);
|
|
|
|
Quaternion attitude_target = attitude_control.get_attitude_target_quat();
|
|
|
|
last_roll = degrees(attitude_target.get_euler_roll()) * 100;
|
|
|
|
last_pitch = degrees(attitude_target.get_euler_pitch()) * 100;
|
|
|
|
last_pilot_heading = degrees(attitude_target.get_euler_yaw()) * 100;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
attitude_control.input_euler_angle_roll_pitch_yaw(last_roll, last_pitch, last_pilot_heading, true);
|
|
|
|
}
|
2023-07-14 15:37:18 -03:00
|
|
|
}
|
2023-07-16 11:12:45 -03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
if (!is_zero(desired_yaw_rate))
|
|
|
|
{ // call attitude controller with rate yaw determined by pilot input
|
|
|
|
attitude_control.input_euler_angle_roll_pitch_euler_rate_yaw(last_roll, last_pitch, desired_yaw_rate);
|
|
|
|
last_pilot_heading = ahrs.yaw_sensor;
|
|
|
|
last_pilot_yaw_input_ms = tnow; // time when pilot last changed heading
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // hold current heading
|
|
|
|
|
|
|
|
// this check is required to prevent bounce back after very fast yaw maneuvers
|
|
|
|
// the inertia of the vehicle causes the heading to move slightly past the point when pilot input actually stopped
|
|
|
|
if (tnow < last_pilot_yaw_input_ms + 250)
|
|
|
|
{ // give 250ms to slow down, then set target heading
|
|
|
|
desired_yaw_rate = 0; // Stop rotation on yaw axis
|
|
|
|
|
|
|
|
// call attitude controller with target yaw rate = 0 to decelerate onqq yaw axis
|
|
|
|
attitude_control.input_euler_angle_roll_pitch_euler_rate_yaw(last_roll, last_pitch, desired_yaw_rate);
|
|
|
|
last_pilot_heading = ahrs.yaw_sensor; // update heading to hold
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // call attitude controller holding absolute absolute bearing
|
|
|
|
attitude_control.input_euler_angle_roll_pitch_yaw(last_roll, last_pitch, last_pilot_heading, true);
|
|
|
|
}
|
|
|
|
}
|
2023-07-14 15:37:18 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|