Commit cf8e48eb authored by Lorenz Meier's avatar Lorenz Meier

Fixed sign of actuator output

parent 17adc213
...@@ -316,7 +316,7 @@ void QGCXPlaneLink::updateControls(uint64_t time, float rollAilerons, float pitc ...@@ -316,7 +316,7 @@ void QGCXPlaneLink::updateControls(uint64_t time, float rollAilerons, float pitc
p.b[4] = '\0'; p.b[4] = '\0';
p.index = 12; p.index = 12;
p.f[0] = pitchElevator; p.f[0] = -pitchElevator;
p.f[1] = rollAilerons; p.f[1] = rollAilerons;
p.f[2] = yawRudder; p.f[2] = yawRudder;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment