Skip to content

Commit

Permalink
Merge pull request #7824 from etracer65/dshot_command_queue_fix
Browse files Browse the repository at this point in the history
DSHOT command non-blocking motor selection fix
  • Loading branch information
mikeller committed Mar 21, 2019
1 parent 462ff10 commit 14ca2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/drivers/pwm_output.c
Expand Up @@ -467,7 +467,7 @@ void pwmWriteDshotCommand(uint8_t index, uint8_t motorCount, uint8_t command, bo
if (index == i || index == ALL_MOTORS) {
dshotCommandControl.command[i] = command;
} else {
dshotCommandControl.command[i] = command;
dshotCommandControl.command[i] = DSHOT_CMD_MOTOR_STOP;
}
}

Expand Down

0 comments on commit 14ca2a4

Please sign in to comment.