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:
authorManuel <manuel.coenen@gmail.com>2019-10-21 10:42:10 +0300
committerdc42 <dcrocker@eschertech.com>2019-10-21 10:42:10 +0300
commit85a33c7e5bdee16a83b0dc94150c9e7c443b9ed7 (patch)
tree74ff095772fec7abd4f59bcfcd1abe749a6a9965 /src/GCodes/GCodeMachineState.h
parent25e05cf6dfd5315584cad9bf63ac2af66d9555d4 (diff)
Implement G38.x (2 <= x <= 5) (#324)
* Implement G38.x (2 <= x <= 5) * Improve code readability * Remove accidentally committed change to Endstop.h * Fix missing initialization and deduplicate code * Use GCodeResult::error instead of GCodeResult::badOrMissingParameter * Fix filename in comment, add description and revert changes in RepRapFirmware.h
Diffstat (limited to 'src/GCodes/GCodeMachineState.h')
-rw-r--r--src/GCodes/GCodeMachineState.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/GCodes/GCodeMachineState.h b/src/GCodes/GCodeMachineState.h
index 3f94605f..5b717350 100644
--- a/src/GCodes/GCodeMachineState.h
+++ b/src/GCodes/GCodeMachineState.h
@@ -80,6 +80,12 @@ enum class GCodeState : uint8_t
probingAtPoint6,
probingAtPoint7,
+ // These next 4 must be contiguous
+ straightProbe0,
+ straightProbe1,
+ straightProbe2,
+ straightProbe3,
+
doingFirmwareRetraction,
doingFirmwareUnRetraction,
loadingFilament,