Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-12-06 23:49:56 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-12-06 23:49:56 +0300
commitf8972a8a5b261652acf09013ab6a2bb5a6a4849e (patch)
tree10ae6f21f01126d8923308e0bce836733434135a
parentf3aa415bc180d72488a8790e4728d915450f4b6f (diff)
Increment seqs.move when movement queue length is updated
-rw-r--r--src/Movement/DDARing.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Movement/DDARing.cpp b/src/Movement/DDARing.cpp
index c15b5809..c07a5530 100644
--- a/src/Movement/DDARing.cpp
+++ b/src/Movement/DDARing.cpp
@@ -159,6 +159,7 @@ GCodeResult DDARing::ConfigureMovementQueue(GCodeBuffer& gb, const StringRef& re
// Allocate the extra DMs
DriveMovement::InitialAllocate(numDMsWanted); // this will only create any extra ones wanted
+ reprap.MoveUpdated();
}
}
else