We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a26d3c commit 54e1593Copy full SHA for 54e1593
1 file changed
ArduSub/mode_acro.cpp
@@ -33,7 +33,7 @@ void ModeAcro::run()
33
attitude_control->input_rate_bf_roll_pitch_yaw_cds(target_roll, target_pitch, target_yaw);
34
35
// output pilot's throttle without angle boost
36
- attitude_control->set_throttle_out(channel_throttle->norm_input(), false, g.throttle_filt);
+ attitude_control->set_throttle_out((channel_throttle->norm_input() + 1.0f) / 2.0f, false, g.throttle_filt);
37
38
//control_in is range 0-1000
39
//radio_in is raw pwm value
0 commit comments