More fixed wing improvements

This commit is contained in:
Lorenz Meier 2012-11-26 17:41:51 +01:00
parent 2ca09ab3d1
commit 7cc712b286

View File

@ -264,7 +264,7 @@ int fixedwing_att_control_thread_main(int argc, char *argv[])
/* directly pass through values */
actuators.control[0] = manual_sp.roll;
/* positive pitch means negative actuator -> pull up */
actuators.control[1] = -manual_sp.pitch;
actuators.control[1] = manual_sp.pitch;
actuators.control[2] = manual_sp.yaw;
actuators.control[3] = manual_sp.throttle;
}