forked from Archive/PX4-Autopilot
Invert aileron actuator for correct aileron response in auto
This commit is contained in:
parent
6fca5c1023
commit
a8a74fda96
|
@ -322,7 +322,7 @@ void BlockMultiModeBacksideAutopilot::update()
|
|||
_att.roll, _att.pitch, _att.yaw,
|
||||
_att.rollspeed, _att.pitchspeed, _att.yawspeed
|
||||
);
|
||||
_actuators.control[CH_AIL] = - _backsideAutopilot.getAileron();
|
||||
_actuators.control[CH_AIL] = _backsideAutopilot.getAileron();
|
||||
_actuators.control[CH_ELV] = - _backsideAutopilot.getElevator();
|
||||
_actuators.control[CH_RDR] = _backsideAutopilot.getRudder();
|
||||
_actuators.control[CH_THR] = _backsideAutopilot.getThrottle();
|
||||
|
|
Loading…
Reference in New Issue