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-05-19 10:51:48 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-05-19 10:51:48 +0300
commit07a3c744f0ec55be9a2097389db9b99124171525 (patch)
tree08ddda024422e238aac55c434fa53b40e093bb77 /src/GCodes/GCodes.h
parentd8a32f008427b0ada607016cb38abf5340dbf55e (diff)
Bug fix: M291 in pause.g/filament-change.g allowed execution to continue
Diffstat (limited to 'src/GCodes/GCodes.h')
-rw-r--r--src/GCodes/GCodes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/GCodes/GCodes.h b/src/GCodes/GCodes.h
index 933aa4b7..5ef2bfa7 100644
--- a/src/GCodes/GCodes.h
+++ b/src/GCodes/GCodes.h
@@ -77,6 +77,7 @@ enum class StopPrintReason
enum class PauseState : uint8_t
{
+ // Do not change the order of these! We rely on notPaused < pausing < { paused, resuming}
notPaused = 0,
pausing,
paused,