Skip to content

Commit

Permalink
AP_Motors: Fix comment on expected variable range
Browse files Browse the repository at this point in the history
the move_actuators function in AP_MotorsHeli_Dual previously
indicated incorrect ranges for its input variables.
  • Loading branch information
frizensami authored and rmackay9 committed May 9, 2017
1 parent cd52c5a commit 379005e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libraries/AP_Motors/AP_MotorsHeli_Dual.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,10 +431,10 @@ void AP_MotorsHeli_Dual::update_motor_control(RotorControlState state)
//
// move_actuators - moves swash plate to attitude of parameters passed in
// - expected ranges:
// roll : -4500 ~ 4500
// pitch: -4500 ~ 4500
// collective: 0 ~ 1000
// yaw: -4500 ~ 4500
// roll : -1 ~ +1
// pitch: -1 ~ +1
// collective: 0 ~ 1
// yaw: -1 ~ +1
//
void AP_MotorsHeli_Dual::move_actuators(float roll_out, float pitch_out, float collective_in, float yaw_out)
{
Expand Down

0 comments on commit 379005e

Please sign in to comment.