Commenting updates. Minor bug fix with exit of soft limit event.
This commit is contained in:
12
system.h
12
system.h
@ -59,12 +59,12 @@
|
||||
// of Grbl to manage each without overlapping. It is also used as a messaging flag for
|
||||
// critical events.
|
||||
#define STATE_IDLE 0 // Must be zero. No flags.
|
||||
#define STATE_QUEUED bit(0) // Indicates buffered blocks, awaiting cycle start.
|
||||
#define STATE_CYCLE bit(1) // Cycle is running
|
||||
#define STATE_HOLD bit(2) // Executing feed hold
|
||||
#define STATE_HOMING bit(3) // Performing homing cycle
|
||||
#define STATE_ALARM bit(4) // In alarm state. Locks out all g-code processes. Allows settings access.
|
||||
#define STATE_CHECK_MODE bit(5) // G-code check mode. Locks out planner and motion only.
|
||||
#define STATE_ALARM bit(0) // In alarm state. Locks out all g-code processes. Allows settings access.
|
||||
#define STATE_CHECK_MODE bit(1) // G-code check mode. Locks out planner and motion only.
|
||||
#define STATE_HOMING bit(2) // Performing homing cycle
|
||||
#define STATE_QUEUED bit(3) // Indicates buffered blocks, awaiting cycle start.
|
||||
#define STATE_CYCLE bit(4) // Cycle is running
|
||||
#define STATE_HOLD bit(5) // Executing feed hold
|
||||
// #define STATE_JOG bit(6) // Jogging mode is unique like homing.
|
||||
|
||||
// Define global system variables
|
||||
|
Reference in New Issue
Block a user