2009-01-25 00:48:56 +01:00
|
|
|
/*
|
2012-10-01 03:57:10 +02:00
|
|
|
gcode.h - rs274/ngc parser.
|
2015-02-16 01:36:08 +01:00
|
|
|
Part of Grbl
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2015-02-16 01:36:08 +01:00
|
|
|
Copyright (c) 2011-2015 Sungeun K. Jeon
|
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2012-02-11 19:59:35 +01:00
|
|
|
|
2009-01-25 00:48:56 +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 gcode_h
|
|
|
|
#define gcode_h
|
2014-01-11 04:22:10 +01:00
|
|
|
|
2012-11-02 02:48:55 +01:00
|
|
|
|
|
|
|
// Define modal group internal numbers for checking multiple command violations and tracking the
|
|
|
|
// type of command that is called in the block. A modal group is a group of g-code commands that are
|
|
|
|
// mutually exclusive, or cannot exist on the same line, because they each toggle a state or execute
|
|
|
|
// a unique motion. These are defined in the NIST RS274-NGC v3 g-code standard, available online,
|
|
|
|
// and are similar/identical to other g-code interpreters by manufacturers (Haas,Fanuc,Mazak,etc).
|
2014-05-26 00:05:28 +02:00
|
|
|
// NOTE: Modal group define values must be sequential and starting from zero.
|
|
|
|
#define MODAL_GROUP_G0 0 // [G4,G10,G28,G28.1,G30,G30.1,G53,G92,G92.1] Non-modal
|
2015-03-14 16:27:48 +01:00
|
|
|
#define MODAL_GROUP_G1 1 // [G0,G1,G2,G3,G38.2,G38.3,G38.4,G38.5,G80] Motion
|
2014-05-26 00:05:28 +02:00
|
|
|
#define MODAL_GROUP_G2 2 // [G17,G18,G19] Plane selection
|
|
|
|
#define MODAL_GROUP_G3 3 // [G90,G91] Distance mode
|
2015-03-14 16:27:48 +01:00
|
|
|
#define MODAL_GROUP_G4 4 // [G91.1] Arc IJK distance mode
|
2015-02-25 16:29:56 +01:00
|
|
|
#define MODAL_GROUP_G5 5 // [G93,G94] Feed rate mode
|
|
|
|
#define MODAL_GROUP_G6 6 // [G20,G21] Units
|
|
|
|
#define MODAL_GROUP_G7 7 // [G40] Cutter radius compensation mode. G41/42 NOT SUPPORTED.
|
2015-03-14 16:27:48 +01:00
|
|
|
#define MODAL_GROUP_G8 8 // [G43.1,G49] Tool length offset
|
2015-02-25 16:29:56 +01:00
|
|
|
#define MODAL_GROUP_G12 9 // [G54,G55,G56,G57,G58,G59] Coordinate system selection
|
2015-05-30 05:32:45 +02:00
|
|
|
#define MODAL_GROUP_G13 10 // [G61] Control mode
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2015-05-30 05:32:45 +02:00
|
|
|
#define MODAL_GROUP_M4 11 // [M0,M1,M2,M30] Stopping
|
|
|
|
#define MODAL_GROUP_M7 12 // [M3,M4,M5] Spindle turning
|
|
|
|
#define MODAL_GROUP_M8 13 // [M7,M8,M9] Coolant control
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2015-05-30 05:32:45 +02:00
|
|
|
// #define OTHER_INPUT_F 14
|
|
|
|
// #define OTHER_INPUT_S 15
|
|
|
|
// #define OTHER_INPUT_T 16
|
2012-11-02 02:48:55 +01:00
|
|
|
|
|
|
|
// Define command actions for within execution-type modal groups (motion, stopping, non-modal). Used
|
|
|
|
// internally by the parser to know which command to execute.
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G0: Non-modal actions
|
2014-05-26 00:05:28 +02:00
|
|
|
#define NON_MODAL_NO_ACTION 0 // (Default: Must be zero)
|
2012-11-02 02:48:55 +01:00
|
|
|
#define NON_MODAL_DWELL 1 // G4
|
|
|
|
#define NON_MODAL_SET_COORDINATE_DATA 2 // G10
|
|
|
|
#define NON_MODAL_GO_HOME_0 3 // G28
|
|
|
|
#define NON_MODAL_SET_HOME_0 4 // G28.1
|
|
|
|
#define NON_MODAL_GO_HOME_1 5 // G30
|
|
|
|
#define NON_MODAL_SET_HOME_1 6 // G30.1
|
2014-05-26 00:05:28 +02:00
|
|
|
#define NON_MODAL_ABSOLUTE_OVERRIDE 7 // G53
|
|
|
|
#define NON_MODAL_SET_COORDINATE_OFFSET 8 // G92
|
|
|
|
#define NON_MODAL_RESET_COORDINATE_OFFSET 9 //G92.1
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G1: Motion modes
|
2014-05-26 00:05:28 +02:00
|
|
|
#define MOTION_MODE_SEEK 0 // G0 (Default: Must be zero)
|
|
|
|
#define MOTION_MODE_LINEAR 1 // G1
|
|
|
|
#define MOTION_MODE_CW_ARC 2 // G2
|
|
|
|
#define MOTION_MODE_CCW_ARC 3 // G3
|
2015-03-16 04:57:21 +01:00
|
|
|
#define MOTION_MODE_PROBE_TOWARD 4 // G38.2 NOTE: G38.2, G38.3, G38.4, G38.5 must be sequential. See report_gcode_modes().
|
2014-10-02 04:22:16 +02:00
|
|
|
#define MOTION_MODE_PROBE_TOWARD_NO_ERROR 5 // G38.3
|
|
|
|
#define MOTION_MODE_PROBE_AWAY 6 // G38.4
|
|
|
|
#define MOTION_MODE_PROBE_AWAY_NO_ERROR 7 // G38.5
|
|
|
|
#define MOTION_MODE_NONE 8 // G80
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G2: Plane select
|
2014-05-26 00:05:28 +02:00
|
|
|
#define PLANE_SELECT_XY 0 // G17 (Default: Must be zero)
|
|
|
|
#define PLANE_SELECT_ZX 1 // G18
|
|
|
|
#define PLANE_SELECT_YZ 2 // G19
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G3: Distance mode
|
2014-05-26 00:05:28 +02:00
|
|
|
#define DISTANCE_MODE_ABSOLUTE 0 // G90 (Default: Must be zero)
|
|
|
|
#define DISTANCE_MODE_INCREMENTAL 1 // G91
|
|
|
|
|
2015-02-25 16:29:56 +01:00
|
|
|
// Modal Group G4: Arc IJK distance mode
|
|
|
|
#define DISTANCE_ARC_MODE_INCREMENTAL 0 // G91.1 (Default: Must be zero)
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group M4: Program flow
|
2014-05-26 00:05:28 +02:00
|
|
|
#define PROGRAM_FLOW_RUNNING 0 // (Default: Must be zero)
|
|
|
|
#define PROGRAM_FLOW_PAUSED 1 // M0, M1
|
|
|
|
#define PROGRAM_FLOW_COMPLETED 2 // M2, M30
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G5: Feed rate mode
|
2014-05-26 00:05:28 +02:00
|
|
|
#define FEED_RATE_MODE_UNITS_PER_MIN 0 // G94 (Default: Must be zero)
|
|
|
|
#define FEED_RATE_MODE_INVERSE_TIME 1 // G93
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G6: Units mode
|
2014-05-26 00:05:28 +02:00
|
|
|
#define UNITS_MODE_MM 0 // G21 (Default: Must be zero)
|
|
|
|
#define UNITS_MODE_INCHES 1 // G20
|
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// Modal Group G7: Cutter radius compensation mode
|
|
|
|
#define CUTTER_COMP_DISABLE 0 // G40 (Default: Must be zero)
|
|
|
|
|
2015-05-30 05:32:45 +02:00
|
|
|
// Modal Group G13: Control mode
|
|
|
|
#define CONTROL_MODE_EXACT_PATH 0 // G61 (Default: Must be zero)
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group M7: Spindle control
|
2014-05-26 00:05:28 +02:00
|
|
|
#define SPINDLE_DISABLE 0 // M5 (Default: Must be zero)
|
|
|
|
#define SPINDLE_ENABLE_CW 1 // M3
|
|
|
|
#define SPINDLE_ENABLE_CCW 2 // M4
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group M8: Coolant control
|
2014-05-26 00:05:28 +02:00
|
|
|
#define COOLANT_DISABLE 0 // M9 (Default: Must be zero)
|
|
|
|
#define COOLANT_MIST_ENABLE 1 // M7
|
|
|
|
#define COOLANT_FLOOD_ENABLE 2 // M8
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// Modal Group G8: Tool length offset
|
|
|
|
#define TOOL_LENGTH_OFFSET_CANCEL 0 // G49 (Default: Must be zero)
|
|
|
|
#define TOOL_LENGTH_OFFSET_ENABLE_DYNAMIC 1 // G43.1
|
|
|
|
|
|
|
|
// Modal Group G12: Active work coordinate system
|
2014-05-26 00:05:28 +02:00
|
|
|
// N/A: Stores coordinate system value (54-59) to change to.
|
|
|
|
|
2015-05-30 05:32:45 +02:00
|
|
|
|
|
|
|
// Define parameter word mapping.
|
2014-05-26 00:05:28 +02:00
|
|
|
#define WORD_F 0
|
|
|
|
#define WORD_I 1
|
|
|
|
#define WORD_J 2
|
|
|
|
#define WORD_K 3
|
|
|
|
#define WORD_L 4
|
|
|
|
#define WORD_N 5
|
|
|
|
#define WORD_P 6
|
|
|
|
#define WORD_R 7
|
|
|
|
#define WORD_S 8
|
|
|
|
#define WORD_T 9
|
|
|
|
#define WORD_X 10
|
|
|
|
#define WORD_Y 11
|
|
|
|
#define WORD_Z 12
|
|
|
|
|
|
|
|
|
|
|
|
// NOTE: When this struct is zeroed, the above defines set the defaults for the system.
|
|
|
|
typedef struct {
|
2015-01-15 06:14:52 +01:00
|
|
|
uint8_t motion; // {G0,G1,G2,G3,G38.2,G80}
|
|
|
|
uint8_t feed_rate; // {G93,G94}
|
|
|
|
uint8_t units; // {G20,G21}
|
|
|
|
uint8_t distance; // {G90,G91}
|
2015-05-30 05:32:45 +02:00
|
|
|
// uint8_t distance_arc; // {G91.1} NOTE: Don't track. Only default supported.
|
2015-01-15 06:14:52 +01:00
|
|
|
uint8_t plane_select; // {G17,G18,G19}
|
2015-05-30 05:32:45 +02:00
|
|
|
// uint8_t cutter_comp; // {G40} NOTE: Don't track. Only default supported.
|
2015-01-15 06:14:52 +01:00
|
|
|
uint8_t tool_length; // {G43.1,G49}
|
|
|
|
uint8_t coord_select; // {G54,G55,G56,G57,G58,G59}
|
2015-05-30 05:32:45 +02:00
|
|
|
// uint8_t control; // {G61} NOTE: Don't track. Only default supported.
|
2015-01-15 06:14:52 +01:00
|
|
|
uint8_t program_flow; // {M0,M1,M2,M30}
|
|
|
|
uint8_t coolant; // {M7,M8,M9}
|
|
|
|
uint8_t spindle; // {M3,M4,M5}
|
2014-05-26 00:05:28 +02:00
|
|
|
} gc_modal_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float f; // Feed
|
|
|
|
float ijk[3]; // I,J,K Axis arc offsets
|
|
|
|
uint8_t l; // G10 or canned cycles parameters
|
|
|
|
int32_t n; // Line number
|
|
|
|
float p; // G10 or dwell parameters
|
|
|
|
// float q; // G82 peck drilling
|
|
|
|
float r; // Arc radius
|
|
|
|
float s; // Spindle speed
|
Settings refactoring. Bug fixes. Misc new features.
This is likely the last major change to the v0.9 code base before push
to master. Only two minor things remain on the agenda (CoreXY support,
force clear EEPROM, and an extremely low federate bug).
- NEW! Grbl is now compile-able and may be flashed directly through the
Arduino IDE. Only minor changes were required for this compatibility.
See the Wiki to learn how to do it.
- New status reporting mask to turn on and off what Grbl sends back.
This includes machine coordinates, work coordinates, serial RX buffer
usage, and planner buffer usage. Expandable to more information on user
request, but that’s it for now.
- Settings have been completely renumbered to allow for future new
settings to be installed without having to constantly reshuffle and
renumber all of the settings every time.
- All settings masks have been standardized to mean bit 0 = X, bit 1 =
Y, and bit 2 = Z, to reduce confusion on how they work. The invert
masks used by the internal Grbl system were updated to accommodate this
change as well.
- New invert probe pin setting, which does what it sounds like.
- Fixed a probing cycle bug, where it would freeze intermittently, and
removed some redundant code.
- Homing may now be set to the origin wherever the limit switches are.
Traditionally machine coordinates should always be in negative space,
but when limit switches on are on the opposite side, the machine
coordinate would be set to -max_travel for the axis. Now you can always
make it [0,0,0] via a compile-time option in config.h. (Soft limits
routine was updated to account for this as well.)
- Probe coordinate message immediately after a probing cycle may now
be turned off via a compile-time option in config.h. By default the
probing location is always reported.
- Reduced the N_ARC_CORRECTION default value to reflect the changes in
how circles are generated by an arc tolerance, rather than a fixed arc
segment setting.
- Increased the incoming line buffer limit from 70 to 80 characters.
Had some extra memory space to invest into this.
- Fixed a bug where tool number T was not being tracked and reported
correctly.
- Added a print free memory function for debugging purposes. Not used
otherwise.
- Realtime rate report should now work during feed holds, but it hasn’t
been tested yet.
- Updated the streaming scripts with MIT-license and added the simple
streaming to the main stream.py script to allow for settings to be sent.
- Some minor code refactoring to improve flash efficiency. Reduced the
flash by several hundred KB, which was re-invested in some of these new
features.
2014-07-26 23:01:34 +02:00
|
|
|
uint8_t t; // Tool selection
|
2014-05-26 00:05:28 +02:00
|
|
|
float xyz[3]; // X,Y,Z Translational axes
|
|
|
|
} gc_values_t;
|
|
|
|
|
2012-11-02 02:48:55 +01:00
|
|
|
|
|
|
|
typedef struct {
|
2014-05-26 00:05:28 +02:00
|
|
|
gc_modal_t modal;
|
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
float spindle_speed; // RPM
|
|
|
|
float feed_rate; // Millimeters/min
|
|
|
|
uint8_t tool; // Tracks tool number. NOT USED.
|
2014-10-02 04:22:16 +02:00
|
|
|
int32_t line_number; // Last line number sent
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
float position[N_AXIS]; // Where the interpreter considers the tool to be at this point in the code
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
float coord_system[N_AXIS]; // Current work coordinate system (G54+). Stores offset from absolute machine
|
|
|
|
// position in mm. Loaded from EEPROM when called.
|
|
|
|
float coord_offset[N_AXIS]; // Retains the G92 coordinate offset (work coordinates) relative to
|
|
|
|
// machine zero in mm. Non-persistent. Cleared upon reset and boot.
|
|
|
|
float tool_length_offset; // Tracks tool length offset value when enabled.
|
2012-11-02 02:48:55 +01:00
|
|
|
} parser_state_t;
|
2014-05-26 00:05:28 +02:00
|
|
|
extern parser_state_t gc_state;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
// uint16_t command_words; // NOTE: If this bitflag variable fills, G and M words can be separated.
|
|
|
|
// uint16_t value_words;
|
|
|
|
|
|
|
|
uint8_t non_modal_command;
|
|
|
|
gc_modal_t modal;
|
|
|
|
gc_values_t values;
|
|
|
|
|
|
|
|
} parser_block_t;
|
|
|
|
extern parser_block_t gc_block;
|
2009-01-25 00:48:56 +01:00
|
|
|
|
|
|
|
// Initialize the parser
|
|
|
|
void gc_init();
|
|
|
|
|
|
|
|
// Execute one block of rs275/ngc/g-code
|
|
|
|
uint8_t gc_execute_line(char *line);
|
|
|
|
|
2012-01-29 04:41:08 +01:00
|
|
|
// Set g-code parser position. Input in steps.
|
2013-10-30 02:10:39 +01:00
|
|
|
void gc_sync_position();
|
2012-01-29 04:41:08 +01:00
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
#endif
|