mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
Copter: Correct yaw expo range limit
This commit is contained in:
parent
0e4e6b8075
commit
85798e96c7
@ -750,7 +750,7 @@ float Mode::get_pilot_desired_yaw_rate(int16_t stick_angle)
|
||||
}
|
||||
|
||||
// range check expo
|
||||
g2.acro_y_expo = constrain_float(g2.acro_y_expo, 0.0f, 1.0f);
|
||||
g2.acro_y_expo = constrain_float(g2.acro_y_expo, -0.5f, 1.0f);
|
||||
|
||||
// calculate yaw rate request
|
||||
float yaw_request;
|
||||
|
Loading…
Reference in New Issue
Block a user