Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/main/flight/mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,9 +546,13 @@ void FAST_CODE writeMotors(void)
}
}
else {
// While disarmed only the mixer stop value means motor off, so the
// motor test can drive a motor below the configured idle. Armed
// behaviour is unchanged: there the configured idle stays the
// threshold, so failsafe and turtle mode are not affected.
motorValue = handleOutputScaling(
motor[i],
throttleIdleValue,
ARMING_FLAG(ARMED) ? throttleIdleValue : (motorZeroCommand + 1),
DSHOT_DISARM_COMMAND,
motorConfig()->mincommand,
getMaxThrottle(),
Expand Down
Loading