2014-01-11 04:22:10 +01:00
|
|
|
/*
|
|
|
|
system.h - Header for system level commands and real-time processes
|
2015-02-16 01:36:08 +01:00
|
|
|
Part of Grbl
|
2014-01-11 04:22:10 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
Copyright (c) 2014-2015 Sungeun K. Jeon
|
2014-01-11 04:22:10 +01:00
|
|
|
|
|
|
|
Grbl is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Grbl is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef system_h
|
|
|
|
#define system_h
|
|
|
|
|
2015-02-10 16:25:09 +01:00
|
|
|
#include "grbl.h"
|
2014-01-11 04:22:10 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// Define system executor bit map. Used internally by realtime protocol as realtime command flags,
|
|
|
|
// which notifies the main program to execute the specified realtime command asynchronously.
|
2014-01-11 04:22:10 +01:00
|
|
|
// NOTE: The system executor uses an unsigned 8-bit volatile variable (8 flag limit.) The default
|
2015-01-15 06:14:52 +01:00
|
|
|
// flags are always false, so the realtime protocol only needs to check for a non-zero value to
|
|
|
|
// know when there is a realtime command to execute.
|
2014-01-11 04:22:10 +01:00
|
|
|
#define EXEC_STATUS_REPORT bit(0) // bitmask 00000001
|
|
|
|
#define EXEC_CYCLE_START bit(1) // bitmask 00000010
|
|
|
|
#define EXEC_CYCLE_STOP bit(2) // bitmask 00000100
|
|
|
|
#define EXEC_FEED_HOLD bit(3) // bitmask 00001000
|
|
|
|
#define EXEC_RESET bit(4) // bitmask 00010000
|
2015-02-12 05:19:00 +01:00
|
|
|
#define EXEC_SAFETY_DOOR bit(5) // bitmask 00100000
|
|
|
|
#define EXEC_MOTION_CANCEL bit(6) // bitmask 01000000
|
2015-01-15 06:14:52 +01:00
|
|
|
|
|
|
|
// Alarm executor bit map.
|
|
|
|
// NOTE: EXEC_CRITICAL_EVENT is an optional flag that must be set with an alarm flag. When enabled,
|
|
|
|
// this halts Grbl into an infinite loop until the user aknowledges the problem and issues a soft-
|
|
|
|
// reset command. For example, a hard limit event needs this type of halt and aknowledgement.
|
|
|
|
#define EXEC_CRITICAL_EVENT bit(0) // bitmask 00000001 (SPECIAL FLAG. See NOTE:)
|
2015-02-13 22:50:07 +01:00
|
|
|
#define EXEC_ALARM_HARD_LIMIT bit(1) // bitmask 00000010
|
|
|
|
#define EXEC_ALARM_SOFT_LIMIT bit(2) // bitmask 00000100
|
|
|
|
#define EXEC_ALARM_ABORT_CYCLE bit(3) // bitmask 00001000
|
|
|
|
#define EXEC_ALARM_PROBE_FAIL bit(4) // bitmask 00010000
|
2015-02-16 01:36:08 +01:00
|
|
|
#define EXEC_ALARM_HOMING_FAIL bit(5) // bitmask 00100000
|
2014-01-11 04:22:10 +01:00
|
|
|
|
|
|
|
// Define system state bit map. The state variable primarily tracks the individual functions
|
|
|
|
// of Grbl to manage each without overlapping. It is also used as a messaging flag for
|
|
|
|
// critical events.
|
2015-02-12 05:19:00 +01:00
|
|
|
#define STATE_IDLE 0 // Must be zero. No flags.
|
|
|
|
#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_CYCLE bit(3) // Cycle is running or motions are being executed.
|
|
|
|
#define STATE_HOLD bit(4) // Active feed hold
|
|
|
|
#define STATE_SAFETY_DOOR bit(5) // Safety door is ajar. Feed holds and de-energizes system.
|
|
|
|
#define STATE_MOTION_CANCEL bit(6) // Motion cancel by feed hold and return to idle.
|
|
|
|
|
v1.0 Beta Release.
- Tons of new stuff in this release, which is fairly stable and well
tested. However, much more is coming soon!
- Real-time parking motion with safety door. When this compile option
is enabled, an opened safety door will cause Grbl to automatically feed
hold, retract, de-energize the spindle/coolant, and parks near Z max.
After the door is closed and resume is commanded, this reverses and the
program continues as if nothing happened. This is also highly
configurable. See config.h for details.
- New spindle max and min rpm ‘$’ settings! This has been requested
often. Grbl will output 5V when commanded to turn on the spindle at its
max rpm, and 0.02V with min rpm. The voltage and the rpm range are
linear to each other. This should help users tweak their settings to
get close to true rpm’s.
- If the new max rpm ‘$’ setting is set = 0 or less than min rpm, the
spindle speed PWM pin will act like a regular on/off spindle enable
pin. On pin D11.
- BEWARE: Your old EEPROM settings will be wiped! The new spindle rpm
settings require a new settings version, so Grbl will automatically
wipe and restore the EEPROM with the new defaults.
- Control pin can now be inverted individually with a
CONTROL_INVERT_MASK in the cpu_map header file. Not typical for users
to need this, but handy to have.
- Fixed bug when Grbl receive too many characters in a line and
overflows. Previously it would respond with an error per overflow
character and another acknowledge upon an EOL character. This broke the
streaming protocol. Now fixed to only respond with an error after an
EOL character.
- Fixed a bug with the safety door during an ALARM mode. You now can’t
home or unlock the axes until the safety door has been closed. This is
for safety reasons (obviously.)
- Tweaked some the Mega2560 cpu_map settings . Increased segment buffer
size and fixed the spindle PWM settings to output at a higher PWM
frequency.
- Generalized the delay function used by G4 delay for use by parking
motion. Allows non-blocking status reports and real-time control during
re-energizing of the spindle and coolant.
- Added spindle rpm max and min defaults to default.h files.
- Added a new print float for rpm values.
2015-08-28 05:37:19 +02:00
|
|
|
// Define system suspend flags. Used in various ways to manage suspend states and procedures.
|
|
|
|
#define SUSPEND_DISABLE 0 // Must be zero.
|
|
|
|
#define SUSPEND_HOLD_COMPLETE bit(0) // Indicates initial feed hold is complete.
|
|
|
|
#define SUSPEND_RESTART_RETRACT bit(1) // Flag to indicate a retract from a restore parking motion.
|
|
|
|
#define SUSPEND_RETRACT_COMPLETE bit(2) // (Safety door only) Indicates retraction and de-energizing is complete.
|
|
|
|
#define SUSPEND_INITIATE_RESTORE bit(3) // (Safety door only) Flag to initiate resume procedures from a cycle start.
|
|
|
|
#define SUSPEND_RESTORE_COMPLETE bit(4) // (Safety door only) Indicates ready to resume normal operation.
|
|
|
|
#define SUSPEND_SAFETY_DOOR_AJAR bit(5) // Indicates suspend was initiated by a safety door state.
|
|
|
|
#define SUSPEND_MOTION_CANCEL bit(6) // Indicates a canceled resume motion. Currently used by probing routine.
|
|
|
|
|
2015-11-10 05:54:26 +01:00
|
|
|
// Define step segment generator state flags.
|
v1.0 Beta Release.
- Tons of new stuff in this release, which is fairly stable and well
tested. However, much more is coming soon!
- Real-time parking motion with safety door. When this compile option
is enabled, an opened safety door will cause Grbl to automatically feed
hold, retract, de-energize the spindle/coolant, and parks near Z max.
After the door is closed and resume is commanded, this reverses and the
program continues as if nothing happened. This is also highly
configurable. See config.h for details.
- New spindle max and min rpm ‘$’ settings! This has been requested
often. Grbl will output 5V when commanded to turn on the spindle at its
max rpm, and 0.02V with min rpm. The voltage and the rpm range are
linear to each other. This should help users tweak their settings to
get close to true rpm’s.
- If the new max rpm ‘$’ setting is set = 0 or less than min rpm, the
spindle speed PWM pin will act like a regular on/off spindle enable
pin. On pin D11.
- BEWARE: Your old EEPROM settings will be wiped! The new spindle rpm
settings require a new settings version, so Grbl will automatically
wipe and restore the EEPROM with the new defaults.
- Control pin can now be inverted individually with a
CONTROL_INVERT_MASK in the cpu_map header file. Not typical for users
to need this, but handy to have.
- Fixed bug when Grbl receive too many characters in a line and
overflows. Previously it would respond with an error per overflow
character and another acknowledge upon an EOL character. This broke the
streaming protocol. Now fixed to only respond with an error after an
EOL character.
- Fixed a bug with the safety door during an ALARM mode. You now can’t
home or unlock the axes until the safety door has been closed. This is
for safety reasons (obviously.)
- Tweaked some the Mega2560 cpu_map settings . Increased segment buffer
size and fixed the spindle PWM settings to output at a higher PWM
frequency.
- Generalized the delay function used by G4 delay for use by parking
motion. Allows non-blocking status reports and real-time control during
re-energizing of the spindle and coolant.
- Added spindle rpm max and min defaults to default.h files.
- Added a new print float for rpm values.
2015-08-28 05:37:19 +02:00
|
|
|
#define STEP_CONTROL_NORMAL_OP 0
|
|
|
|
// #define STEP_CONTROL_RECOMPUTE_ACTIVE_BLOCK bit(0)
|
|
|
|
#define STEP_CONTROL_END_MOTION bit(1)
|
|
|
|
#define STEP_CONTROL_EXECUTE_HOLD bit(2)
|
|
|
|
#define STEP_CONTROL_EXECUTE_PARK bit(3)
|
|
|
|
|
2015-11-10 05:54:26 +01:00
|
|
|
// Define control pin index for Grbl internal use. Pin maps may change, but these values don't.
|
|
|
|
#ifdef ENABLE_SAFETY_DOOR_INPUT_PIN
|
|
|
|
#define N_CONTROL_PIN 4
|
|
|
|
#define CONTROL_PIN_INDEX_SAFETY_DOOR bit(0)
|
|
|
|
#define CONTROL_PIN_INDEX_RESET bit(1)
|
|
|
|
#define CONTROL_PIN_INDEX_FEED_HOLD bit(2)
|
|
|
|
#define CONTROL_PIN_INDEX_CYCLE_START bit(3)
|
|
|
|
#else
|
|
|
|
#define N_CONTROL_PIN 3
|
|
|
|
#define CONTROL_PIN_INDEX_RESET bit(0)
|
|
|
|
#define CONTROL_PIN_INDEX_FEED_HOLD bit(1)
|
|
|
|
#define CONTROL_PIN_INDEX_CYCLE_START bit(2)
|
|
|
|
#endif
|
2014-01-11 04:22:10 +01:00
|
|
|
|
2014-02-25 21:19:52 +01:00
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
// Define global system variables
|
|
|
|
typedef struct {
|
|
|
|
uint8_t abort; // System abort flag. Forces exit back to main loop for reset.
|
|
|
|
uint8_t state; // Tracks the current state of Grbl.
|
Critical M0/2/30 fix. Homing updates.
- Critical fix for M0 program pause. Due to its recent change, it would
cause Grbl to suspend but wouldn’t notify the user of why Grbl was not
doing anything. The state would show IDLE and a cycle start would
resume it. Grbl now enters a HOLD state to better indicate the state
change.
- Critical fix for M2 and M30 program end. As with M0, the state
previously would show IDLE while suspended. Grbl now does not suspend
upon program end and leaves job control to the GUI. Grbl simply reports
a `[Pgm End]` as a feedback message and resets certain g-code modes.
- M2/30 g-code reseting fix. Previously Grbl would soft-reset after an
M2/30, but this was not complaint to the (linuxcnc) g-code standard. It
simply resets [G1,G17,G90,G94,G40,G54,M5,M9,M48] and keeps all other
modes the same.
- M0/M2/M30 check-mode fix. It now does not suspend the machine during
check-mode.
- Minor bug fix related to commands similar to G90.1, but not G90.1,
not reporting an unsupported command.
- Homing cycle refactoring. To help reduce the chance of users
misunderstanding their limit switch wiring, Grbl only moves a short
distance for the locate cycles only. In addition, the homing cycle
pulls-off the limit switch by the pull-off distance to re-engage and
locate home. This should improve its accuracy.
- HOMING_FORCE_ORIGIN now sets the origin to the pull-off location,
rather than where the limit switch was triggered.
- Updated default junction deviation to 0.01mm. Recent tests showed
that this improves Grbl’s cornering behavior a bit.
- Added the ShapeOko3 defaults.
- Added new feedback message `[Pgm End]` for M2/30 notification.
- Limit pin reporting is now a $10 status report option. Requested by
OEMs to help simplify support troubleshooting.
2015-05-17 21:25:36 +02:00
|
|
|
uint8_t suspend; // System suspend bitflag variable that manages holds, cancels, and safety door.
|
2016-03-11 17:42:07 +01:00
|
|
|
uint8_t soft_limit; // Tracks soft limit errors for the state machine (Boolean)
|
v1.0 Beta Release.
- Tons of new stuff in this release, which is fairly stable and well
tested. However, much more is coming soon!
- Real-time parking motion with safety door. When this compile option
is enabled, an opened safety door will cause Grbl to automatically feed
hold, retract, de-energize the spindle/coolant, and parks near Z max.
After the door is closed and resume is commanded, this reverses and the
program continues as if nothing happened. This is also highly
configurable. See config.h for details.
- New spindle max and min rpm ‘$’ settings! This has been requested
often. Grbl will output 5V when commanded to turn on the spindle at its
max rpm, and 0.02V with min rpm. The voltage and the rpm range are
linear to each other. This should help users tweak their settings to
get close to true rpm’s.
- If the new max rpm ‘$’ setting is set = 0 or less than min rpm, the
spindle speed PWM pin will act like a regular on/off spindle enable
pin. On pin D11.
- BEWARE: Your old EEPROM settings will be wiped! The new spindle rpm
settings require a new settings version, so Grbl will automatically
wipe and restore the EEPROM with the new defaults.
- Control pin can now be inverted individually with a
CONTROL_INVERT_MASK in the cpu_map header file. Not typical for users
to need this, but handy to have.
- Fixed bug when Grbl receive too many characters in a line and
overflows. Previously it would respond with an error per overflow
character and another acknowledge upon an EOL character. This broke the
streaming protocol. Now fixed to only respond with an error after an
EOL character.
- Fixed a bug with the safety door during an ALARM mode. You now can’t
home or unlock the axes until the safety door has been closed. This is
for safety reasons (obviously.)
- Tweaked some the Mega2560 cpu_map settings . Increased segment buffer
size and fixed the spindle PWM settings to output at a higher PWM
frequency.
- Generalized the delay function used by G4 delay for use by parking
motion. Allows non-blocking status reports and real-time control during
re-energizing of the spindle and coolant.
- Added spindle rpm max and min defaults to default.h files.
- Added a new print float for rpm values.
2015-08-28 05:37:19 +02:00
|
|
|
uint8_t step_control;
|
2015-01-15 06:14:52 +01:00
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
int32_t position[N_AXIS]; // Real-time machine (aka home) position vector in steps.
|
|
|
|
// NOTE: This may need to be a volatile variable, if problems arise.
|
2014-10-02 04:22:16 +02:00
|
|
|
|
G38.2 probe feature rough draft installed. Working but needs testing.
- G38.2 straight probe now supported. Rough draft. May be tweaked more
as testing ramps up.
- G38.2 requires at least one axis word. Multiple axis words work too.
When commanded, the probe cycle will move at the last ‘F’ feed rate
specified in a straight line.
- During a probe cycle: If the probe pin goes low (normal high), Grbl
will record that immediate position and engage a feed hold. Meaning
that the CNC machine will move a little past the probe switch point, so
keep federates low to stop sooner. Once stopped, Grbl will issue a move
to go back to the recorded probe trigger point.
- During a probe cycle: If the probe switch does not engage by the time
the machine has traveled to its target coordinates, Grbl will issue an
ALARM and the user will be forced to reset Grbl. (Currently G38.3 probe
without error isn’t supported, but would be easy to implement later.)
- After a successful probe, Grbl will send a feedback message
containing the recorded probe coordinates in the machine coordinate
system. This is as the g-code standard on probe parameters specifies.
- The recorded probe parameters are retained in Grbl memory and can be
viewed with the ‘$#’ print parameters command. Upon a power-cycle, not
a soft-reset, Grbl will re-zero these values.
- Moved ‘$#’ command to require IDLE or ALARM mode, because it accesses
EEPROM to fetch the coordinate system offsets.
- Updated the Grbl version to v0.9d.
- The probe cycle is subject to change upon testing or user-feedback.
2014-03-01 06:03:26 +01:00
|
|
|
int32_t probe_position[N_AXIS]; // Last probe position in machine coordinates and steps.
|
2014-10-02 04:22:16 +02:00
|
|
|
uint8_t probe_succeeded; // Tracks if last probing cycle was successful.
|
2015-10-01 04:53:35 +02:00
|
|
|
uint8_t homing_axis_lock; // Locks axes when limits engage. Used as an axis motion mask in the stepper ISR.
|
2014-01-11 04:22:10 +01:00
|
|
|
} system_t;
|
|
|
|
extern system_t sys;
|
|
|
|
|
2015-10-01 05:32:58 +02:00
|
|
|
volatile uint8_t sys_probe_state; // Probing state value. Used to coordinate the probing cycle with stepper ISR.
|
2015-10-01 04:53:35 +02:00
|
|
|
volatile uint8_t sys_rt_exec_state; // Global realtime executor bitflag variable for state management. See EXEC bitmasks.
|
|
|
|
volatile uint8_t sys_rt_exec_alarm; // Global realtime executor bitflag variable for setting various alarms.
|
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
|
|
|
|
// Initialize the serial protocol
|
|
|
|
void system_init();
|
|
|
|
|
2015-11-10 05:54:26 +01:00
|
|
|
// Returns bitfield of control pin states, organized by CONTROL_PIN_INDEX. (1=triggered, 0=not triggered).
|
|
|
|
uint8_t system_control_get_state();
|
|
|
|
|
2015-02-12 05:19:00 +01:00
|
|
|
// Returns if safety door is open or closed, based on pin state.
|
|
|
|
uint8_t system_check_safety_door_ajar();
|
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
// Executes an internal system command, defined as a string starting with a '$'
|
|
|
|
uint8_t system_execute_line(char *line);
|
|
|
|
|
|
|
|
// Execute the startup script lines stored in EEPROM upon initialization
|
|
|
|
void system_execute_startup(char *line);
|
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// Returns machine position of axis 'idx'. Must be sent a 'step' array.
|
|
|
|
float system_convert_axis_steps_to_mpos(int32_t *steps, uint8_t idx);
|
|
|
|
|
|
|
|
// Updates a machine 'position' array based on the 'step' array sent.
|
|
|
|
void system_convert_array_steps_to_mpos(float *position, int32_t *steps);
|
|
|
|
|
2015-11-10 05:54:26 +01:00
|
|
|
// Special handlers for setting and clearing Grbl's real-time execution flags.
|
|
|
|
void system_set_exec_state_flag(uint8_t mask);
|
|
|
|
void system_clear_exec_state_flag(uint8_t mask);
|
|
|
|
void system_set_exec_alarm_flag(uint8_t mask);
|
|
|
|
void system_clear_exec_alarm_flag(uint8_t mask);
|
|
|
|
|
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
#endif
|