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-03-14 12:00:42 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-03-14 12:00:42 +0300
commit7d051ddff7a24eff15fe350481ba8aa759093137 (patch)
treecd22004917a48bb8fb2ee1e13cbe7398a32bde62 /src/GCodes/GCodeMachineState.h
parent8c2f5e1165750fb5fbb8b742e495c7711420ce1e (diff)
Fixed M585
Also added error message if M675 or M585 is used on an unhomed axis Also recognise layer number comments from Kiri Moto slicer
Diffstat (limited to 'src/GCodes/GCodeMachineState.h')
-rw-r--r--src/GCodes/GCodeMachineState.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/GCodes/GCodeMachineState.h b/src/GCodes/GCodeMachineState.h
index 11510b1c..ad283e0b 100644
--- a/src/GCodes/GCodeMachineState.h
+++ b/src/GCodes/GCodeMachineState.h
@@ -25,7 +25,11 @@ enum class GCodeState : uint8_t
waitingForSpecialMoveToComplete, // doing a special move, so we must wait for it to finish before processing another GCode
waitingForSegmentedMoveToGo, // doing an arc move, so we must check whether it completes normally
- probingToolOffset,
+ // This group must be contiguous
+ probingToolOffset1,
+ probingToolOffset2,
+ probingToolOffset3,
+ probingToolOffset4,
// These next 7 must be contiguous
findCenterOfCavity1,