1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 04:15:44 +03:00

Remove a suprious newline.

This commit is contained in:
Dominic Clifton 2015-03-09 23:04:54 +00:00
parent d94d2dd026
commit c0c2f8e285

View file

@ -703,8 +703,7 @@ void loop(void)
// If we're armed, at minimum throttle, and we do arming via the
// sticks, do not process yaw input from the rx. We do this so the
// motors do not spin up while we are trying to arm or disarm.
if (isUsingSticksForArming() &&
rcData[THROTTLE] <= masterConfig.rxConfig.mincheck) {
if (isUsingSticksForArming() && rcData[THROTTLE] <= masterConfig.rxConfig.mincheck) {
rcCommand[YAW] = 0;
}