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>2022-08-16 19:37:52 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-16 19:37:52 +0300
commit07d6b8078ae0c3ac9fe43a3da2717ed7c20fe69d (patch)
tree1c913175e35fcf1b41c1df4a52bbeb523203aada
parent63198ff741ddb2c2c86a49284d5e653fab234dd2 (diff)
Correction to previous commit
-rw-r--r--src/GCodes/GCodes4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodes4.cpp b/src/GCodes/GCodes4.cpp
index 05f3146e..3d7c6c08 100644
--- a/src/GCodes/GCodes4.cpp
+++ b/src/GCodes/GCodes4.cpp
@@ -1305,7 +1305,7 @@ void GCodes::RunStateMachine(GCodeBuffer& gb, const StringRef& reply) noexcept
moveState.reduceAcceleration = true;
straightProbeSettings.SetCoordsToTarget(moveState.coords);
moveState.feedRate = zp->GetProbingSpeed(0);
- moveState.linearAxesMentioned = moveState.rotationalAxesmentioned = true;
+ moveState.linearAxesMentioned = moveState.rotationalAxesMentioned = true;
NewSingleSegmentMoveAvailable();
gb.AdvanceState();
}