2016-01-14 15:30:56 -04:00
|
|
|
#include "Sub.h"
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2023-04-03 09:11:21 -03:00
|
|
|
#include "Sub.h"
|
|
|
|
|
|
|
|
|
|
|
|
bool ModeAcro::init(bool ignore_checks) {
|
2016-04-05 00:17:39 -03:00
|
|
|
// set target altitude to zero for reporting
|
2023-04-03 09:11:21 -03:00
|
|
|
position_control->set_pos_target_z_cm(0);
|
2016-04-05 00:17:39 -03:00
|
|
|
|
2017-10-30 17:07:58 -03:00
|
|
|
// attitude hold inputs become thrust inputs in acro mode
|
|
|
|
// set to neutral to prevent chaotic behavior (esp. roll/pitch)
|
2023-04-03 09:11:21 -03:00
|
|
|
sub.set_neutral_controls();
|
2017-10-30 17:07:58 -03:00
|
|
|
|
2016-04-05 00:17:39 -03:00
|
|
|
return true;
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
2023-04-03 09:11:21 -03:00
|
|
|
void ModeAcro::run()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
float target_roll, target_pitch, target_yaw;
|
|
|
|
|
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);
|
2023-04-03 09:11:21 -03:00
|
|
|
attitude_control->set_throttle_out(0,true,g.throttle_filt);
|
|
|
|
attitude_control->relax_attitude_controllers();
|
2015-12-30 18:57:56 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// convert the input to the desired body frame rate
|
2017-02-03 00:18:27 -04:00
|
|
|
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);
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
// run attitude controller
|
2023-04-03 09:11:21 -03:00
|
|
|
attitude_control->input_rate_bf_roll_pitch_yaw(target_roll, target_pitch, target_yaw);
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
// output pilot's throttle without angle boost
|
2023-04-03 09:11:21 -03:00
|
|
|
attitude_control->set_throttle_out(channel_throttle->norm_input(), false, g.throttle_filt);
|
2016-01-08 19:25:59 -04:00
|
|
|
|
|
|
|
//control_in is range 0-1000
|
|
|
|
//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
|
|
|
}
|