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:
Diffstat (limited to 'src/Movement')
-rw-r--r--src/Movement/Move.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Movement/Move.h b/src/Movement/Move.h
index d4f3b971..5d274600 100644
--- a/src/Movement/Move.h
+++ b/src/Movement/Move.h
@@ -203,11 +203,13 @@ public:
void AddShapeddMoveFromRemote(const CanMessageMovementLinearShaped& msg) noexcept // add a move from the ATE to the movement queue
{
mainDDARing.AddMoveFromRemote(msg);
+ MoveAvailable();
}
# else
void AddMoveFromRemote(const CanMessageMovementLinear& msg) noexcept // add a move from the ATE to the movement queue
{
mainDDARing.AddMoveFromRemote(msg);
+ MoveAvailable();
}
# endif
#endif