1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-23 08:15:26 +03:00

Fixed issue #7194, The DSHOT direction command requires repeats = 10 rather 6 to get the right spin direction.

This commit is contained in:
Englebert 2021-09-24 22:58:26 +08:00
parent b51cb7739a
commit a8614bac70

View file

@ -357,7 +357,7 @@ static int getDShotCommandRepeats(dshotCommands_e cmd) {
switch (cmd) {
case DSHOT_CMD_SPIN_DIRECTION_NORMAL:
case DSHOT_CMD_SPIN_DIRECTION_REVERSED:
repeats = 6;
repeats = 10;
break;
default:
break;