1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-19 14:25:16 +03:00

Remove all trailing whitespaces in .c and .h files

This commit is contained in:
Michel Pastor 2018-08-06 15:54:20 +02:00
parent 24398b124d
commit c949d19725
56 changed files with 174 additions and 174 deletions

View file

@ -2720,9 +2720,9 @@ static navigationFSMEvent_t selectNavEventFromBoxModeInput(void)
// If we were in LAUNCH mode - force switch to IDLE only if the throttle is low
if (FLIGHT_MODE(NAV_LAUNCH_MODE)) {
throttleStatus_e throttleStatus = calculateThrottleStatus();
if (throttleStatus != THROTTLE_LOW)
if (throttleStatus != THROTTLE_LOW)
return NAV_FSM_EVENT_NONE;
else
else
return NAV_FSM_EVENT_SWITCH_TO_IDLE;
}
}