#include "Sub.h"
bool ModeAcro::init(bool ignore_checks) {
position_control->set_pos_desired_U_cm(0);
sub.set_neutral_controls();
return true;
}
void ModeAcro::run()
{
float target_roll, target_pitch, target_yaw;
if (!motors.armed()) {
motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
attitude_control->set_throttle_out(NEUTRAL_THROTTLE,true,g.throttle_filt);
attitude_control->relax_attitude_controllers();
return;
}
motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
get_pilot_desired_angle_rates(channel_roll->get_control_in(), channel_pitch->get_control_in(), channel_yaw->get_control_in(), target_roll, target_pitch, target_yaw);
attitude_control->input_rate_bf_roll_pitch_yaw_cds(target_roll, target_pitch, target_yaw);
attitude_control->set_throttle_out((channel_throttle->norm_input() + 1.0f) / 2.0f, false, g.throttle_filt);
motors.set_forward(channel_forward->norm_input());
motors.set_lateral(channel_lateral->norm_input());
}