Luigi Santivetti | 69972f9 | 2019-11-12 22:55:40 +0000 | [diff] [blame^] | 1 | /* |
| 2 | system.h - Header for system level commands and real-time processes |
| 3 | Part of Grbl |
| 4 | |
| 5 | Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC |
| 6 | |
| 7 | Grbl is free software: you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation, either version 3 of the License, or |
| 10 | (at your option) any later version. |
| 11 | |
| 12 | Grbl is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with Grbl. If not, see <http://www.gnu.org/licenses/>. |
| 19 | */ |
| 20 | |
| 21 | #ifndef system_h |
| 22 | #define system_h |
| 23 | |
| 24 | #include "grbl.h" |
| 25 | |
| 26 | // Define system executor bit map. Used internally by realtime protocol as realtime command flags, |
| 27 | // which notifies the main program to execute the specified realtime command asynchronously. |
| 28 | // NOTE: The system executor uses an unsigned 8-bit volatile variable (8 flag limit.) The default |
| 29 | // flags are always false, so the realtime protocol only needs to check for a non-zero value to |
| 30 | // know when there is a realtime command to execute. |
| 31 | #define EXEC_STATUS_REPORT bit(0) // bitmask 00000001 |
| 32 | #define EXEC_CYCLE_START bit(1) // bitmask 00000010 |
| 33 | #define EXEC_CYCLE_STOP bit(2) // bitmask 00000100 |
| 34 | #define EXEC_FEED_HOLD bit(3) // bitmask 00001000 |
| 35 | #define EXEC_RESET bit(4) // bitmask 00010000 |
| 36 | #define EXEC_SAFETY_DOOR bit(5) // bitmask 00100000 |
| 37 | #define EXEC_MOTION_CANCEL bit(6) // bitmask 01000000 |
| 38 | #define EXEC_SLEEP bit(7) // bitmask 10000000 |
| 39 | |
| 40 | // Alarm executor codes. Valid values (1-255). Zero is reserved. |
| 41 | #define EXEC_ALARM_HARD_LIMIT 1 |
| 42 | #define EXEC_ALARM_SOFT_LIMIT 2 |
| 43 | #define EXEC_ALARM_ABORT_CYCLE 3 |
| 44 | #define EXEC_ALARM_PROBE_FAIL_INITIAL 4 |
| 45 | #define EXEC_ALARM_PROBE_FAIL_CONTACT 5 |
| 46 | #define EXEC_ALARM_HOMING_FAIL_RESET 6 |
| 47 | #define EXEC_ALARM_HOMING_FAIL_DOOR 7 |
| 48 | #define EXEC_ALARM_HOMING_FAIL_PULLOFF 8 |
| 49 | #define EXEC_ALARM_HOMING_FAIL_APPROACH 9 |
| 50 | #define EXEC_ALARM_HOMING_FAIL_DUAL_APPROACH 10 |
| 51 | |
| 52 | // Override bit maps. Realtime bitflags to control feed, rapid, spindle, and coolant overrides. |
| 53 | // Spindle/coolant and feed/rapids are separated into two controlling flag variables. |
| 54 | #define EXEC_FEED_OVR_RESET bit(0) |
| 55 | #define EXEC_FEED_OVR_COARSE_PLUS bit(1) |
| 56 | #define EXEC_FEED_OVR_COARSE_MINUS bit(2) |
| 57 | #define EXEC_FEED_OVR_FINE_PLUS bit(3) |
| 58 | #define EXEC_FEED_OVR_FINE_MINUS bit(4) |
| 59 | #define EXEC_RAPID_OVR_RESET bit(5) |
| 60 | #define EXEC_RAPID_OVR_MEDIUM bit(6) |
| 61 | #define EXEC_RAPID_OVR_LOW bit(7) |
| 62 | // #define EXEC_RAPID_OVR_EXTRA_LOW bit(*) // *NOT SUPPORTED* |
| 63 | |
| 64 | #define EXEC_SPINDLE_OVR_RESET bit(0) |
| 65 | #define EXEC_SPINDLE_OVR_COARSE_PLUS bit(1) |
| 66 | #define EXEC_SPINDLE_OVR_COARSE_MINUS bit(2) |
| 67 | #define EXEC_SPINDLE_OVR_FINE_PLUS bit(3) |
| 68 | #define EXEC_SPINDLE_OVR_FINE_MINUS bit(4) |
| 69 | #define EXEC_SPINDLE_OVR_STOP bit(5) |
| 70 | #define EXEC_COOLANT_FLOOD_OVR_TOGGLE bit(6) |
| 71 | #define EXEC_COOLANT_MIST_OVR_TOGGLE bit(7) |
| 72 | |
| 73 | // Define system state bit map. The state variable primarily tracks the individual functions |
| 74 | // of Grbl to manage each without overlapping. It is also used as a messaging flag for |
| 75 | // critical events. |
| 76 | #define STATE_IDLE 0 // Must be zero. No flags. |
| 77 | #define STATE_ALARM bit(0) // In alarm state. Locks out all g-code processes. Allows settings access. |
| 78 | #define STATE_CHECK_MODE bit(1) // G-code check mode. Locks out planner and motion only. |
| 79 | #define STATE_HOMING bit(2) // Performing homing cycle |
| 80 | #define STATE_CYCLE bit(3) // Cycle is running or motions are being executed. |
| 81 | #define STATE_HOLD bit(4) // Active feed hold |
| 82 | #define STATE_JOG bit(5) // Jogging mode. |
| 83 | #define STATE_SAFETY_DOOR bit(6) // Safety door is ajar. Feed holds and de-energizes system. |
| 84 | #define STATE_SLEEP bit(7) // Sleep state. |
| 85 | |
| 86 | // Define system suspend flags. Used in various ways to manage suspend states and procedures. |
| 87 | #define SUSPEND_DISABLE 0 // Must be zero. |
| 88 | #define SUSPEND_HOLD_COMPLETE bit(0) // Indicates initial feed hold is complete. |
| 89 | #define SUSPEND_RESTART_RETRACT bit(1) // Flag to indicate a retract from a restore parking motion. |
| 90 | #define SUSPEND_RETRACT_COMPLETE bit(2) // (Safety door only) Indicates retraction and de-energizing is complete. |
| 91 | #define SUSPEND_INITIATE_RESTORE bit(3) // (Safety door only) Flag to initiate resume procedures from a cycle start. |
| 92 | #define SUSPEND_RESTORE_COMPLETE bit(4) // (Safety door only) Indicates ready to resume normal operation. |
| 93 | #define SUSPEND_SAFETY_DOOR_AJAR bit(5) // Tracks safety door state for resuming. |
| 94 | #define SUSPEND_MOTION_CANCEL bit(6) // Indicates a canceled resume motion. Currently used by probing routine. |
| 95 | #define SUSPEND_JOG_CANCEL bit(7) // Indicates a jog cancel in process and to reset buffers when complete. |
| 96 | |
| 97 | // Define step segment generator state flags. |
| 98 | #define STEP_CONTROL_NORMAL_OP 0 // Must be zero. |
| 99 | #define STEP_CONTROL_END_MOTION bit(0) |
| 100 | #define STEP_CONTROL_EXECUTE_HOLD bit(1) |
| 101 | #define STEP_CONTROL_EXECUTE_SYS_MOTION bit(2) |
| 102 | #define STEP_CONTROL_UPDATE_SPINDLE_PWM bit(3) |
| 103 | |
| 104 | // Define control pin index for Grbl internal use. Pin maps may change, but these values don't. |
| 105 | #ifdef ENABLE_SAFETY_DOOR_INPUT_PIN |
| 106 | #define N_CONTROL_PIN 4 |
| 107 | #define CONTROL_PIN_INDEX_SAFETY_DOOR bit(0) |
| 108 | #define CONTROL_PIN_INDEX_RESET bit(1) |
| 109 | #define CONTROL_PIN_INDEX_FEED_HOLD bit(2) |
| 110 | #define CONTROL_PIN_INDEX_CYCLE_START bit(3) |
| 111 | #else |
| 112 | #define N_CONTROL_PIN 3 |
| 113 | #define CONTROL_PIN_INDEX_RESET bit(0) |
| 114 | #define CONTROL_PIN_INDEX_FEED_HOLD bit(1) |
| 115 | #define CONTROL_PIN_INDEX_CYCLE_START bit(2) |
| 116 | #endif |
| 117 | |
| 118 | // Define spindle stop override control states. |
| 119 | #define SPINDLE_STOP_OVR_DISABLED 0 // Must be zero. |
| 120 | #define SPINDLE_STOP_OVR_ENABLED bit(0) |
| 121 | #define SPINDLE_STOP_OVR_INITIATE bit(1) |
| 122 | #define SPINDLE_STOP_OVR_RESTORE bit(2) |
| 123 | #define SPINDLE_STOP_OVR_RESTORE_CYCLE bit(3) |
| 124 | |
| 125 | |
| 126 | // Define global system variables |
| 127 | typedef struct { |
| 128 | uint8_t state; // Tracks the current system state of Grbl. |
| 129 | uint8_t abort; // System abort flag. Forces exit back to main loop for reset. |
| 130 | uint8_t suspend; // System suspend bitflag variable that manages holds, cancels, and safety door. |
| 131 | uint8_t soft_limit; // Tracks soft limit errors for the state machine. (boolean) |
| 132 | uint8_t step_control; // Governs the step segment generator depending on system state. |
| 133 | uint8_t probe_succeeded; // Tracks if last probing cycle was successful. |
| 134 | uint8_t homing_axis_lock; // Locks axes when limits engage. Used as an axis motion mask in the stepper ISR. |
| 135 | #ifdef ENABLE_DUAL_AXIS |
| 136 | uint8_t homing_axis_lock_dual; |
| 137 | #endif |
| 138 | uint8_t f_override; // Feed rate override value in percent |
| 139 | uint8_t r_override; // Rapids override value in percent |
| 140 | uint8_t spindle_speed_ovr; // Spindle speed value in percent |
| 141 | uint8_t spindle_stop_ovr; // Tracks spindle stop override states |
| 142 | uint8_t report_ovr_counter; // Tracks when to add override data to status reports. |
| 143 | uint8_t report_wco_counter; // Tracks when to add work coordinate offset data to status reports. |
| 144 | #ifdef ENABLE_PARKING_OVERRIDE_CONTROL |
| 145 | uint8_t override_ctrl; // Tracks override control states. |
| 146 | #endif |
| 147 | #ifdef VARIABLE_SPINDLE |
| 148 | float spindle_speed; |
| 149 | #endif |
| 150 | } system_t; |
| 151 | extern system_t sys; |
| 152 | |
| 153 | // NOTE: These position variables may need to be declared as volatiles, if problems arise. |
| 154 | extern int32_t sys_position[N_AXIS]; // Real-time machine (aka home) position vector in steps. |
| 155 | extern int32_t sys_probe_position[N_AXIS]; // Last probe position in machine coordinates and steps. |
| 156 | |
| 157 | extern volatile uint8_t sys_probe_state; // Probing state value. Used to coordinate the probing cycle with stepper ISR. |
| 158 | extern volatile uint8_t sys_rt_exec_state; // Global realtime executor bitflag variable for state management. See EXEC bitmasks. |
| 159 | extern volatile uint8_t sys_rt_exec_alarm; // Global realtime executor bitflag variable for setting various alarms. |
| 160 | extern volatile uint8_t sys_rt_exec_motion_override; // Global realtime executor bitflag variable for motion-based overrides. |
| 161 | extern volatile uint8_t sys_rt_exec_accessory_override; // Global realtime executor bitflag variable for spindle/coolant overrides. |
| 162 | |
| 163 | #ifdef DEBUG |
| 164 | #define EXEC_DEBUG_REPORT bit(0) |
| 165 | extern volatile uint8_t sys_rt_exec_debug; |
| 166 | #endif |
| 167 | |
| 168 | // Initialize the serial protocol |
| 169 | void system_init(); |
| 170 | |
| 171 | // Returns bitfield of control pin states, organized by CONTROL_PIN_INDEX. (1=triggered, 0=not triggered). |
| 172 | uint8_t system_control_get_state(); |
| 173 | |
| 174 | // Returns if safety door is open or closed, based on pin state. |
| 175 | uint8_t system_check_safety_door_ajar(); |
| 176 | |
| 177 | // Executes an internal system command, defined as a string starting with a '$' |
| 178 | uint8_t system_execute_line(char *line); |
| 179 | |
| 180 | // Execute the startup script lines stored in EEPROM upon initialization |
| 181 | void system_execute_startup(char *line); |
| 182 | |
| 183 | |
| 184 | void system_flag_wco_change(); |
| 185 | |
| 186 | // Returns machine position of axis 'idx'. Must be sent a 'step' array. |
| 187 | float system_convert_axis_steps_to_mpos(int32_t *steps, uint8_t idx); |
| 188 | |
| 189 | // Updates a machine 'position' array based on the 'step' array sent. |
| 190 | void system_convert_array_steps_to_mpos(float *position, int32_t *steps); |
| 191 | |
| 192 | // CoreXY calculation only. Returns x or y-axis "steps" based on CoreXY motor steps. |
| 193 | #ifdef COREXY |
| 194 | int32_t system_convert_corexy_to_x_axis_steps(int32_t *steps); |
| 195 | int32_t system_convert_corexy_to_y_axis_steps(int32_t *steps); |
| 196 | #endif |
| 197 | |
| 198 | // Checks and reports if target array exceeds machine travel limits. |
| 199 | uint8_t system_check_travel_limits(float *target); |
| 200 | |
| 201 | // Special handlers for setting and clearing Grbl's real-time execution flags. |
| 202 | void system_set_exec_state_flag(uint8_t mask); |
| 203 | void system_clear_exec_state_flag(uint8_t mask); |
| 204 | void system_set_exec_alarm(uint8_t code); |
| 205 | void system_clear_exec_alarm(); |
| 206 | void system_set_exec_motion_override_flag(uint8_t mask); |
| 207 | void system_set_exec_accessory_override_flag(uint8_t mask); |
| 208 | void system_clear_exec_motion_overrides(); |
| 209 | void system_clear_exec_accessory_overrides(); |
| 210 | |
| 211 | |
| 212 | #endif |