2009-01-25 00:48:56 +01:00
|
|
|
/*
|
|
|
|
gcode.c - rs274/ngc parser.
|
2015-02-16 01:36:08 +01:00
|
|
|
Part of Grbl
|
|
|
|
|
|
|
|
Copyright (c) 2011-2015 Sungeun K. Jeon
|
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2015-02-10 16:25:09 +01:00
|
|
|
#include "grbl.h"
|
2009-02-03 09:56:45 +01:00
|
|
|
|
2014-07-02 16:39:19 +02:00
|
|
|
// NOTE: Max line number is defined by the g-code standard to be 99999. It seems to be an
|
|
|
|
// arbitrary value, and some GUIs may require more. So we increased it based on a max safe
|
|
|
|
// value when converting a float (7.2 digit precision)s to an integer.
|
|
|
|
#define MAX_LINE_NUMBER 9999999
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
#define AXIS_COMMAND_NONE 0
|
|
|
|
#define AXIS_COMMAND_NON_MODAL 1
|
|
|
|
#define AXIS_COMMAND_MOTION_MODE 2
|
2014-07-05 17:51:22 +02:00
|
|
|
#define AXIS_COMMAND_TOOL_LENGTH_OFFSET 3 // *Undefined but required
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// Declare gc extern struct
|
|
|
|
parser_state_t gc_state;
|
|
|
|
parser_block_t gc_block;
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
#define FAIL(status) return(status);
|
2009-02-11 00:37:33 +01:00
|
|
|
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2012-01-29 04:41:08 +01:00
|
|
|
void gc_init()
|
|
|
|
{
|
2014-05-26 00:05:28 +02:00
|
|
|
memset(&gc_state, 0, sizeof(gc_state));
|
2012-10-13 21:11:43 +02:00
|
|
|
|
2012-11-02 02:48:55 +01:00
|
|
|
// Load default G54 coordinate system.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (!(settings_read_coord_data(gc_state.modal.coord_select,gc_state.coord_system))) {
|
2012-11-02 02:48:55 +01:00
|
|
|
report_status_message(STATUS_SETTING_READ_FAIL);
|
|
|
|
}
|
2009-01-25 00:48:56 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 02:10:39 +01:00
|
|
|
|
Hard limits, homing direction, pull-off limits after homing, status reports in mm or inches, system alarm, and more.
- Thank you statement added for Alden Hart of Synthetos.
- Hard limits option added, which also works with homing by pulling off
the switches to help prevent unintended triggering. Hard limits use a
interrupt to sense a falling edge pin change and immediately go into
alarm mode, which stops everything and forces the user to issue a reset
(Ctrl-x) or reboot.
- Auto cycle start now a configuration option.
- Alarm mode: A new method to kill all Grbl processes in the event of
something catastrophic or potentially catastropic. Just works with hard
limits for now, but will be expanded to include g-code errors (most
likely) and other events.
- Updated status reports to be configurable in inches or mm mode. Much
more to do here, but this is the first step.
- New settings: auto cycle start, hard limit enable, homing direction
mask (which works the same as the stepper mask), homing pulloff
distance (or distance traveled from homed machine zero to prevent
accidental limit trip).
- Minor memory liberation and calculation speed ups.
2012-10-17 05:29:45 +02:00
|
|
|
// Sets g-code parser position in mm. Input in steps. Called by the system abort and hard
|
|
|
|
// limit pull-off routines.
|
2014-03-13 21:32:21 +01:00
|
|
|
void gc_sync_position()
|
2012-01-29 04:41:08 +01:00
|
|
|
{
|
2015-01-15 06:14:52 +01:00
|
|
|
system_convert_array_steps_to_mpos(gc_state.position,sys.position);
|
2012-01-29 04:41:08 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
static uint8_t gc_check_same_position(float *pos_a, float *pos_b)
|
2012-02-11 19:59:35 +01:00
|
|
|
{
|
2014-05-26 00:05:28 +02:00
|
|
|
uint8_t idx;
|
|
|
|
for (idx=0; idx<N_AXIS; idx++) {
|
|
|
|
if (pos_a[idx] != pos_b[idx]) { return(false); }
|
|
|
|
}
|
|
|
|
return(true);
|
2009-01-25 00:48:56 +01:00
|
|
|
}
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
// Executes one line of 0-terminated G-Code. The line is assumed to contain only uppercase
|
2011-08-16 03:39:44 +02:00
|
|
|
// characters and signed floating point values (no whitespace). Comments and block delete
|
2013-10-30 02:10:39 +01:00
|
|
|
// characters have been removed. In this function, all units and positions are converted and
|
|
|
|
// exported to grbl's internal functions in terms of (mm, mm/min) and absolute machine
|
|
|
|
// coordinates, respectively.
|
2012-01-29 04:41:08 +01:00
|
|
|
uint8_t gc_execute_line(char *line)
|
|
|
|
{
|
2014-05-26 00:05:28 +02:00
|
|
|
/* -------------------------------------------------------------------------------------
|
|
|
|
STEP 1: Initialize parser block struct and copy current g-code state modes. The parser
|
|
|
|
updates these modes and commands as the block line is parser and will only be used and
|
|
|
|
executed after successful error-checking. The parser block struct also contains a block
|
|
|
|
values struct, word tracking variables, and a non-modal commands tracker for the new
|
|
|
|
block. This struct contains all of the necessary information to execute the block. */
|
|
|
|
|
|
|
|
memset(&gc_block, 0, sizeof(gc_block)); // Initialize the parser block struct.
|
|
|
|
memcpy(&gc_block.modal,&gc_state.modal,sizeof(gc_modal_t)); // Copy current modes
|
2014-07-04 02:13:39 +02:00
|
|
|
uint8_t axis_command = AXIS_COMMAND_NONE;
|
2014-05-26 00:05:28 +02:00
|
|
|
uint8_t axis_0, axis_1, axis_linear;
|
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 coord_select = 0; // Tracks G10 P coordinate selection for execution
|
2014-07-02 16:39:19 +02:00
|
|
|
float coordinate_data[N_AXIS]; // Multi-use variable to store coordinate data for execution
|
|
|
|
float parameter_data[N_AXIS]; // Multi-use variable to store parameter data for execution
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// Initialize bitflag tracking variables for axis indices compatible operations.
|
|
|
|
uint8_t axis_words = 0; // XYZ tracking
|
|
|
|
uint8_t ijk_words = 0; // IJK tracking
|
|
|
|
|
|
|
|
// Initialize command and value words variables. Tracks words contained in this block.
|
|
|
|
uint16_t command_words = 0; // G and M command words. Also used for modal group violations.
|
|
|
|
uint16_t value_words = 0; // Value words.
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------------
|
|
|
|
STEP 2: Import all g-code words in the block line. A g-code word is a letter followed by
|
|
|
|
a number, which can either be a 'G'/'M' command or sets/assigns a command value. Also,
|
|
|
|
perform initial error-checks for command word modal group violations, for any repeated
|
|
|
|
words, and for negative values set for the value words F, N, P, T, and S. */
|
|
|
|
|
|
|
|
uint8_t word_bit; // Bit-value for assigning tracking variables
|
2011-02-18 22:59:16 +01:00
|
|
|
uint8_t char_counter = 0;
|
2009-01-25 00:48:56 +01:00
|
|
|
char letter;
|
2012-10-08 23:57:58 +02:00
|
|
|
float value;
|
2014-05-26 00:05:28 +02:00
|
|
|
uint8_t int_value = 0;
|
2014-10-02 04:22:16 +02:00
|
|
|
uint16_t mantissa = 0;
|
2014-07-06 23:20:20 +02:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
while (line[char_counter] != 0) { // Loop until no more g-code words in line.
|
|
|
|
|
|
|
|
// Import the next g-code word, expecting a letter followed by a value. Otherwise, error out.
|
|
|
|
letter = line[char_counter];
|
|
|
|
if((letter < 'A') || (letter > 'Z')) { FAIL(STATUS_EXPECTED_COMMAND_LETTER); } // [Expected word letter]
|
|
|
|
char_counter++;
|
|
|
|
if (!read_float(line, &char_counter, &value)) { FAIL(STATUS_BAD_NUMBER_FORMAT); } // [Expected word value]
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// Convert values to smaller uint8 significand and mantissa values for parsing this word.
|
2014-06-01 05:58:59 +02:00
|
|
|
// NOTE: Mantissa is multiplied by 100 to catch non-integer command values. This is more
|
|
|
|
// accurate than the NIST gcode requirement of x10 when used for commands, but not quite
|
|
|
|
// accurate enough for value words that require integers to within 0.0001. This should be
|
|
|
|
// a good enough comprimise and catch most all non-integer errors. To make it compliant,
|
|
|
|
// we would simply need to change the mantissa to int16, but this add compiled flash space.
|
|
|
|
// Maybe update this later.
|
2009-01-25 00:48:56 +01:00
|
|
|
int_value = trunc(value);
|
2014-07-06 23:20:20 +02:00
|
|
|
mantissa = round(100*(value - int_value)); // Compute mantissa for Gxx.x commands.
|
|
|
|
// NOTE: Rounding must be used to catch small floating point errors.
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// Check if the g-code word is supported or errors due to modal group violations or has
|
|
|
|
// been repeated in the g-code block. If ok, update the command or record its value.
|
2009-01-25 00:48:56 +01:00
|
|
|
switch(letter) {
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
/* 'G' and 'M' Command Words: Parse commands and check for modal group violations.
|
|
|
|
NOTE: Modal group numbers are defined in Table 4 of NIST RS274-NGC v3, pg.20 */
|
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
case 'G':
|
2014-05-26 00:05:28 +02:00
|
|
|
// Determine 'G' command and its modal group
|
2012-02-11 19:59:35 +01:00
|
|
|
switch(int_value) {
|
2014-05-26 00:05:28 +02:00
|
|
|
case 10: case 28: case 30: case 92:
|
|
|
|
// Check for G10/28/30/92 being called with G0/1/2/3/38 on same block.
|
2014-07-05 17:51:22 +02:00
|
|
|
// * G43.1 is also an axis command but is not explicitly defined this way.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (mantissa == 0) { // Ignore G28.1, G30.1, and G92.1
|
2014-07-04 02:13:39 +02:00
|
|
|
if (axis_command) { FAIL(STATUS_GCODE_AXIS_COMMAND_CONFLICT); } // [Axis word/command conflict]
|
|
|
|
axis_command = AXIS_COMMAND_NON_MODAL;
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
|
|
|
// No break. Continues to next line.
|
|
|
|
case 4: case 53:
|
|
|
|
word_bit = MODAL_GROUP_G0;
|
2012-11-01 16:37:27 +01:00
|
|
|
switch(int_value) {
|
2014-05-26 00:05:28 +02:00
|
|
|
case 4: gc_block.non_modal_command = NON_MODAL_DWELL; break; // G4
|
|
|
|
case 10: gc_block.non_modal_command = NON_MODAL_SET_COORDINATE_DATA; break; // G10
|
|
|
|
case 28:
|
|
|
|
switch(mantissa) {
|
|
|
|
case 0: gc_block.non_modal_command = NON_MODAL_GO_HOME_0; break; // G28
|
2014-06-01 05:58:59 +02:00
|
|
|
case 10: gc_block.non_modal_command = NON_MODAL_SET_HOME_0; break; // G28.1
|
2014-05-26 00:05:28 +02:00
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); // [Unsupported G28.x command]
|
|
|
|
}
|
|
|
|
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
|
|
|
break;
|
|
|
|
case 30:
|
|
|
|
switch(mantissa) {
|
|
|
|
case 0: gc_block.non_modal_command = NON_MODAL_GO_HOME_1; break; // G30
|
2014-06-01 05:58:59 +02:00
|
|
|
case 10: gc_block.non_modal_command = NON_MODAL_SET_HOME_1; break; // G30.1
|
2014-05-26 00:05:28 +02:00
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); // [Unsupported G30.x command]
|
|
|
|
}
|
|
|
|
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
|
|
|
break;
|
|
|
|
case 53: gc_block.non_modal_command = NON_MODAL_ABSOLUTE_OVERRIDE; break; // G53
|
|
|
|
case 92:
|
|
|
|
switch(mantissa) {
|
|
|
|
case 0: gc_block.non_modal_command = NON_MODAL_SET_COORDINATE_OFFSET; break; // G92
|
2014-06-01 05:58:59 +02:00
|
|
|
case 10: gc_block.non_modal_command = NON_MODAL_RESET_COORDINATE_OFFSET; break; // G92.1
|
2014-05-26 00:05:28 +02:00
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); // [Unsupported G92.x command]
|
|
|
|
}
|
|
|
|
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
|
|
|
break;
|
2012-10-10 06:01:10 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case 0: case 1: case 2: case 3: case 38:
|
|
|
|
// Check for G0/1/2/3/38 being called with G10/28/30/92 on same block.
|
2014-07-05 17:51:22 +02:00
|
|
|
// * G43.1 is also an axis command but is not explicitly defined this way.
|
2014-07-04 02:13:39 +02:00
|
|
|
if (axis_command) { FAIL(STATUS_GCODE_AXIS_COMMAND_CONFLICT); } // [Axis word/command conflict]
|
|
|
|
axis_command = AXIS_COMMAND_MOTION_MODE;
|
2014-05-26 00:05:28 +02:00
|
|
|
// No break. Continues to next line.
|
|
|
|
case 80:
|
|
|
|
word_bit = MODAL_GROUP_G1;
|
2014-02-25 21:19:52 +01:00
|
|
|
switch(int_value) {
|
2014-05-26 00:05:28 +02:00
|
|
|
case 0: gc_block.modal.motion = MOTION_MODE_SEEK; break; // G0
|
|
|
|
case 1: gc_block.modal.motion = MOTION_MODE_LINEAR; break; // G1
|
|
|
|
case 2: gc_block.modal.motion = MOTION_MODE_CW_ARC; break; // G2
|
|
|
|
case 3: gc_block.modal.motion = MOTION_MODE_CCW_ARC; break; // G3
|
|
|
|
case 38:
|
|
|
|
switch(mantissa) {
|
2014-10-02 04:22:16 +02:00
|
|
|
case 20: gc_block.modal.motion = MOTION_MODE_PROBE_TOWARD; break; // G38.2
|
|
|
|
case 30: gc_block.modal.motion = MOTION_MODE_PROBE_TOWARD_NO_ERROR; break; // G38.3
|
|
|
|
case 40: gc_block.modal.motion = MOTION_MODE_PROBE_AWAY; break; // G38.4
|
|
|
|
case 50: gc_block.modal.motion = MOTION_MODE_PROBE_AWAY_NO_ERROR; break; // G38.5
|
2014-05-26 00:05:28 +02:00
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); // [Unsupported G38.x command]
|
|
|
|
}
|
|
|
|
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
|
|
|
break;
|
|
|
|
case 80: gc_block.modal.motion = MOTION_MODE_NONE; break; // G80
|
|
|
|
}
|
2012-02-11 19:59:35 +01:00
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case 17: case 18: case 19:
|
|
|
|
word_bit = MODAL_GROUP_G2;
|
2012-02-11 19:59:35 +01:00
|
|
|
switch(int_value) {
|
2014-05-26 00:05:28 +02:00
|
|
|
case 17: gc_block.modal.plane_select = PLANE_SELECT_XY; break;
|
|
|
|
case 18: gc_block.modal.plane_select = PLANE_SELECT_ZX; break;
|
|
|
|
case 19: gc_block.modal.plane_select = PLANE_SELECT_YZ; break;
|
2012-02-11 19:59:35 +01:00
|
|
|
}
|
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case 90: case 91:
|
2015-02-25 16:29:56 +01:00
|
|
|
if (mantissa == 0) {
|
|
|
|
word_bit = MODAL_GROUP_G3;
|
|
|
|
if (int_value == 90) { gc_block.modal.distance = DISTANCE_MODE_ABSOLUTE; } // G90
|
|
|
|
else { gc_block.modal.distance = DISTANCE_MODE_INCREMENTAL; } // G91
|
|
|
|
} else {
|
|
|
|
word_bit = MODAL_GROUP_G4;
|
|
|
|
if (mantissa != 10) { FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); } // [G90.1 not supported]
|
|
|
|
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
|
|
|
// Otherwise, arc IJK incremental mode is default. G91.1 does nothing.
|
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
|
|
|
case 93: case 94:
|
|
|
|
word_bit = MODAL_GROUP_G5;
|
|
|
|
if (int_value == 93) { gc_block.modal.feed_rate = FEED_RATE_MODE_INVERSE_TIME; } // G93
|
|
|
|
else { gc_block.modal.feed_rate = FEED_RATE_MODE_UNITS_PER_MIN; } // G94
|
|
|
|
break;
|
|
|
|
case 20: case 21:
|
|
|
|
word_bit = MODAL_GROUP_G6;
|
|
|
|
if (int_value == 20) { gc_block.modal.units = UNITS_MODE_INCHES; } // G20
|
|
|
|
else { gc_block.modal.units = UNITS_MODE_MM; } // G21
|
|
|
|
break;
|
2015-01-15 06:14:52 +01:00
|
|
|
case 40:
|
|
|
|
word_bit = MODAL_GROUP_G7;
|
|
|
|
// NOTE: Not required since cutter radius compensation is always disabled. Only here
|
|
|
|
// to support G40 commands that often appear in g-code program headers to setup defaults.
|
|
|
|
// gc_block.modal.cutter_comp = CUTTER_COMP_DISABLE; // G40
|
|
|
|
break;
|
2014-07-05 17:51:22 +02:00
|
|
|
case 43: case 49:
|
|
|
|
word_bit = MODAL_GROUP_G8;
|
2014-07-06 23:20:20 +02:00
|
|
|
// NOTE: The NIST g-code standard vaguely states that when a tool length offset is changed,
|
|
|
|
// there cannot be any axis motion or coordinate offsets updated. Meaning G43, G43.1, and G49
|
|
|
|
// all are explicit axis commands, regardless if they require axis words or not.
|
|
|
|
if (axis_command) { FAIL(STATUS_GCODE_AXIS_COMMAND_CONFLICT); } // [Axis word/command conflict] }
|
|
|
|
axis_command = AXIS_COMMAND_TOOL_LENGTH_OFFSET;
|
|
|
|
if (int_value == 49) { // G49
|
2014-07-05 17:51:22 +02:00
|
|
|
gc_block.modal.tool_length = TOOL_LENGTH_OFFSET_CANCEL;
|
2014-07-06 23:20:20 +02:00
|
|
|
} else if (mantissa == 10) { // G43.1
|
2014-07-05 17:51:22 +02:00
|
|
|
gc_block.modal.tool_length = TOOL_LENGTH_OFFSET_ENABLE_DYNAMIC;
|
|
|
|
} else { FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); } // [Unsupported G43.x command]
|
2014-07-06 23:20:20 +02:00
|
|
|
mantissa = 0; // Set to zero to indicate valid non-integer G command.
|
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case 54: case 55: case 56: case 57: case 58: case 59:
|
|
|
|
// NOTE: G59.x are not supported. (But their int_values would be 60, 61, and 62.)
|
|
|
|
word_bit = MODAL_GROUP_G12;
|
|
|
|
gc_block.modal.coord_select = int_value-54; // Shift to array indexing.
|
|
|
|
break;
|
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); // [Unsupported G command]
|
|
|
|
}
|
|
|
|
if (mantissa > 0) { FAIL(STATUS_GCODE_COMMAND_VALUE_NOT_INTEGER); } // [Unsupported or invalid Gxx.x command]
|
|
|
|
// Check for more than one command per modal group violations in the current block
|
|
|
|
// NOTE: Variable 'word_bit' is always assigned, if the command is valid.
|
|
|
|
if ( bit_istrue(command_words,bit(word_bit)) ) { FAIL(STATUS_GCODE_MODAL_GROUP_VIOLATION); }
|
2014-07-07 03:05:12 +02:00
|
|
|
command_words |= bit(word_bit);
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
case 'M':
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// Determine 'M' command and its modal group
|
|
|
|
if (mantissa > 0) { FAIL(STATUS_GCODE_COMMAND_VALUE_NOT_INTEGER); } // [No Mxx.x commands]
|
2012-01-29 04:41:08 +01:00
|
|
|
switch(int_value) {
|
2014-05-26 00:05:28 +02:00
|
|
|
case 0: case 1: case 2: case 30:
|
|
|
|
word_bit = MODAL_GROUP_M4;
|
|
|
|
switch(int_value) {
|
|
|
|
case 0: gc_block.modal.program_flow = PROGRAM_FLOW_PAUSED; break; // Program pause
|
|
|
|
case 1: break; // Optional stop not supported. Ignore.
|
|
|
|
case 2: case 30: gc_block.modal.program_flow = PROGRAM_FLOW_COMPLETED; break; // Program end and reset
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3: case 4: case 5:
|
|
|
|
word_bit = MODAL_GROUP_M7;
|
|
|
|
switch(int_value) {
|
|
|
|
case 3: gc_block.modal.spindle = SPINDLE_ENABLE_CW; break;
|
|
|
|
case 4: gc_block.modal.spindle = SPINDLE_ENABLE_CCW; break;
|
|
|
|
case 5: gc_block.modal.spindle = SPINDLE_DISABLE; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#ifdef ENABLE_M7
|
|
|
|
case 7:
|
|
|
|
#endif
|
|
|
|
case 8: case 9:
|
|
|
|
word_bit = MODAL_GROUP_M8;
|
|
|
|
switch(int_value) {
|
|
|
|
#ifdef ENABLE_M7
|
|
|
|
case 7: gc_block.modal.coolant = COOLANT_MIST_ENABLE; break;
|
|
|
|
#endif
|
|
|
|
case 8: gc_block.modal.coolant = COOLANT_FLOOD_ENABLE; break;
|
|
|
|
case 9: gc_block.modal.coolant = COOLANT_DISABLE; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); // [Unsupported M command]
|
2015-01-15 06:14:52 +01:00
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// Check for more than one command per modal group violations in the current block
|
|
|
|
// NOTE: Variable 'word_bit' is always assigned, if the command is valid.
|
|
|
|
if ( bit_istrue(command_words,bit(word_bit)) ) { FAIL(STATUS_GCODE_MODAL_GROUP_VIOLATION); }
|
2014-07-07 03:05:12 +02:00
|
|
|
command_words |= bit(word_bit);
|
2012-01-29 04:41:08 +01:00
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// NOTE: All remaining letters assign values.
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* Non-Command Words: This initial parsing phase only checks for repeats of the remaining
|
|
|
|
legal g-code words and stores their value. Error-checking is performed later since some
|
|
|
|
words (I,J,K,L,P,R) have multiple connotations and/or depend on the issued commands. */
|
|
|
|
switch(letter){
|
|
|
|
// case 'A': // Not supported
|
|
|
|
// case 'B': // Not supported
|
|
|
|
// case 'C': // Not supported
|
|
|
|
// case 'D': // Not supported
|
|
|
|
case 'F': word_bit = WORD_F; gc_block.values.f = value; break;
|
|
|
|
// case 'H': // Not supported
|
|
|
|
case 'I': word_bit = WORD_I; gc_block.values.ijk[X_AXIS] = value; ijk_words |= (1<<X_AXIS); break;
|
|
|
|
case 'J': word_bit = WORD_J; gc_block.values.ijk[Y_AXIS] = value; ijk_words |= (1<<Y_AXIS); break;
|
|
|
|
case 'K': word_bit = WORD_K; gc_block.values.ijk[Z_AXIS] = value; ijk_words |= (1<<Z_AXIS); break;
|
|
|
|
case 'L': word_bit = WORD_L; gc_block.values.l = int_value; break;
|
2014-07-02 16:39:19 +02:00
|
|
|
case 'N': word_bit = WORD_N; gc_block.values.n = trunc(value); break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case 'P': word_bit = WORD_P; gc_block.values.p = value; break;
|
|
|
|
// NOTE: For certain commands, P value must be an integer, but none of these commands are supported.
|
|
|
|
// case 'Q': // Not supported
|
|
|
|
case 'R': word_bit = WORD_R; gc_block.values.r = value; break;
|
|
|
|
case 'S': word_bit = WORD_S; gc_block.values.s = value; break;
|
|
|
|
case 'T': word_bit = WORD_T; break; // gc.values.t = int_value;
|
|
|
|
case 'X': word_bit = WORD_X; gc_block.values.xyz[X_AXIS] = value; axis_words |= (1<<X_AXIS); break;
|
|
|
|
case 'Y': word_bit = WORD_Y; gc_block.values.xyz[Y_AXIS] = value; axis_words |= (1<<Y_AXIS); break;
|
|
|
|
case 'Z': word_bit = WORD_Z; gc_block.values.xyz[Z_AXIS] = value; axis_words |= (1<<Z_AXIS); break;
|
|
|
|
default: FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND);
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: Variable 'word_bit' is always assigned, if the non-command letter is valid.
|
|
|
|
if (bit_istrue(value_words,bit(word_bit))) { FAIL(STATUS_GCODE_WORD_REPEATED); } // [Word repeated]
|
|
|
|
// Check for invalid negative values for words F, N, P, T, and S.
|
|
|
|
// NOTE: Negative value check is done here simply for code-efficiency.
|
|
|
|
if ( bit(word_bit) & (bit(WORD_F)|bit(WORD_N)|bit(WORD_P)|bit(WORD_T)|bit(WORD_S)) ) {
|
|
|
|
if (value < 0.0) { FAIL(STATUS_NEGATIVE_VALUE); } // [Word value cannot be negative]
|
|
|
|
}
|
|
|
|
value_words |= bit(word_bit); // Flag to indicate parameter assigned.
|
|
|
|
|
|
|
|
}
|
2012-02-11 19:59:35 +01:00
|
|
|
}
|
2014-06-01 05:58:59 +02:00
|
|
|
// Parsing complete!
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2012-02-11 19:59:35 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
/* -------------------------------------------------------------------------------------
|
|
|
|
STEP 3: Error-check all commands and values passed in this block. This step ensures all of
|
|
|
|
the commands are valid for execution and follows the NIST standard as closely as possible.
|
|
|
|
If an error is found, all commands and values in this block are dumped and will not update
|
|
|
|
the active system g-code modes. If the block is ok, the active system g-code modes will be
|
|
|
|
updated based on the commands of this block, and signal for it to be executed.
|
|
|
|
|
|
|
|
Also, we have to pre-convert all of the values passed based on the modes set by the parsed
|
|
|
|
block. There are a number of error-checks that require target information that can only be
|
|
|
|
accurately calculated if we convert these values in conjunction with the error-checking.
|
|
|
|
This relegates the next execution step as only updating the system g-code modes and
|
|
|
|
performing the programmed actions in order. The execution step should not require any
|
2014-06-01 05:58:59 +02:00
|
|
|
conversion calculations and would only require minimal checks necessary to execute.
|
2014-05-26 00:05:28 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* NOTE: At this point, the g-code block has been parsed and the block line can be freed.
|
|
|
|
NOTE: It's also possible, at some future point, to break up STEP 2, to allow piece-wise
|
|
|
|
parsing of the block on a per-word basis, rather than the entire block. This could remove
|
|
|
|
the need for maintaining a large string variable for the entire block and free up some memory.
|
|
|
|
To do this, this would simply need to retain all of the data in STEP 1, such as the new block
|
|
|
|
data struct, the modal group and value bitflag tracking variables, and axis array indices
|
|
|
|
compatible variables. This data contains all of the information necessary to error-check the
|
|
|
|
new g-code block when the EOL character is received. However, this would break Grbl's startup
|
|
|
|
lines in how it currently works and would require some refactoring to make it compatible.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// [0. Non-specific/common error-checks and miscellaneous setup]:
|
|
|
|
|
2014-07-04 02:13:39 +02:00
|
|
|
// Determine implicit axis command conditions. Axis words have been passed, but no explicit axis
|
|
|
|
// command has been sent. If so, set axis command to current motion mode.
|
|
|
|
if (axis_words) {
|
|
|
|
if (!axis_command) { axis_command = AXIS_COMMAND_MOTION_MODE; } // Assign implicit motion-mode
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check for valid line number N value.
|
|
|
|
if (bit_istrue(value_words,bit(WORD_N))) {
|
|
|
|
// Line number value cannot be less than zero (done) or greater than max line number.
|
|
|
|
if (gc_block.values.n > MAX_LINE_NUMBER) { FAIL(STATUS_GCODE_INVALID_LINE_NUMBER); } // [Exceeds max line number]
|
2009-01-25 00:48:56 +01:00
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
// bit_false(value_words,bit(WORD_N)); // NOTE: Single-meaning value word. Set at end of error-checking.
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// Track for unused words at the end of error-checking.
|
|
|
|
// NOTE: Single-meaning value words are removed all at once at the end of error-checking, because
|
|
|
|
// they are always used when present. This was done to save a few bytes of flash. For clarity, the
|
|
|
|
// single-meaning value words may be removed as they are used. Also, axis words are treated in the
|
2014-07-04 02:13:39 +02:00
|
|
|
// same way. If there is an explicit/implicit axis command, XYZ words are always used and are
|
2014-05-26 00:05:28 +02:00
|
|
|
// are removed at the end of error-checking.
|
2012-02-11 19:59:35 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [1. Comments ]: MSG's NOT SUPPORTED. Comment handling performed by protocol.
|
|
|
|
|
|
|
|
// [2. Set feed rate mode ]: G93 F word missing with G1,G2/3 active, implicitly or explicitly. Feed rate
|
|
|
|
// is not defined after switching to G94 from G93.
|
|
|
|
if (gc_block.modal.feed_rate == FEED_RATE_MODE_INVERSE_TIME) { // = G93
|
|
|
|
// NOTE: G38 can also operate in inverse time, but is undefined as an error. Missing F word check added here.
|
2014-07-04 02:13:39 +02:00
|
|
|
if (axis_command == AXIS_COMMAND_MOTION_MODE) {
|
2014-05-26 00:05:28 +02:00
|
|
|
if ((gc_block.modal.motion != MOTION_MODE_NONE) || (gc_block.modal.motion != MOTION_MODE_SEEK)) {
|
|
|
|
if (bit_isfalse(value_words,bit(WORD_F))) { FAIL(STATUS_GCODE_UNDEFINED_FEED_RATE); } // [F word missing]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// NOTE: It seems redundant to check for an F word to be passed after switching from G94 to G93. We would
|
|
|
|
// accomplish the exact same thing if the feed rate value is always reset to zero and undefined after each
|
|
|
|
// inverse time block, since the commands that use this value already perform undefined checks. This would
|
|
|
|
// also allow other commands, following this switch, to execute and not error out needlessly. This code is
|
|
|
|
// combined with the above feed rate mode and the below set feed rate error-checking.
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [3. Set feed rate ]: F is negative (done.)
|
|
|
|
// - In inverse time mode: Always implicitly zero the feed rate value before and after block completion.
|
|
|
|
// NOTE: If in G93 mode or switched into it from G94, just keep F value as initialized zero or passed F word
|
|
|
|
// value in the block. If no F word is passed with a motion command that requires a feed rate, this will error
|
|
|
|
// out in the motion modes error-checking. However, if no F word is passed with NO motion command that requires
|
|
|
|
// a feed rate, we simply move on and the state feed rate value gets updated to zero and remains undefined.
|
|
|
|
} else { // = G94
|
|
|
|
// - In units per mm mode: If F word passed, ensure value is in mm/min, otherwise push last state value.
|
|
|
|
if (gc_state.modal.feed_rate == FEED_RATE_MODE_UNITS_PER_MIN) { // Last state is also G94
|
|
|
|
if (bit_istrue(value_words,bit(WORD_F))) {
|
|
|
|
if (gc_block.modal.units == UNITS_MODE_INCHES) { gc_block.values.f *= MM_PER_INCH; }
|
|
|
|
} else {
|
|
|
|
gc_block.values.f = gc_state.feed_rate; // Push last state feed rate
|
|
|
|
}
|
|
|
|
} // Else, switching to G94 from G93, so don't push last state feed rate. Its undefined or the passed F word value.
|
|
|
|
}
|
|
|
|
// bit_false(value_words,bit(WORD_F)); // NOTE: Single-meaning value word. Set at end of error-checking.
|
|
|
|
|
|
|
|
// [4. Set spindle speed ]: S is negative (done.)
|
|
|
|
if (bit_isfalse(value_words,bit(WORD_S))) { gc_block.values.s = gc_state.spindle_speed; }
|
|
|
|
// bit_false(value_words,bit(WORD_S)); // NOTE: Single-meaning value word. Set at end of error-checking.
|
2012-11-19 03:52:16 +01:00
|
|
|
|
2014-07-05 17:51:22 +02:00
|
|
|
// [5. Select tool ]: NOT SUPPORTED. Only tracks value. T is negative (done.) Not an integer. Greater than max tool value.
|
2014-05-26 00:05:28 +02:00
|
|
|
// bit_false(value_words,bit(WORD_T)); // NOTE: Single-meaning value word. Set at end of error-checking.
|
2012-11-19 03:52:16 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [6. Change tool ]: N/A
|
|
|
|
// [7. Spindle control ]: N/A
|
|
|
|
// [8. Coolant control ]: N/A
|
|
|
|
// [9. Enable/disable feed rate or spindle overrides ]: NOT SUPPORTED.
|
|
|
|
|
|
|
|
// [10. Dwell ]: P value missing. P is negative (done.) NOTE: See below.
|
|
|
|
if (gc_block.non_modal_command == NON_MODAL_DWELL) {
|
|
|
|
if (bit_isfalse(value_words,bit(WORD_P))) { FAIL(STATUS_GCODE_VALUE_WORD_MISSING); } // [P word missing]
|
|
|
|
bit_false(value_words,bit(WORD_P));
|
|
|
|
}
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [11. Set active plane ]: N/A
|
|
|
|
switch (gc_block.modal.plane_select) {
|
|
|
|
case PLANE_SELECT_XY:
|
|
|
|
axis_0 = X_AXIS;
|
|
|
|
axis_1 = Y_AXIS;
|
|
|
|
axis_linear = Z_AXIS;
|
|
|
|
break;
|
|
|
|
case PLANE_SELECT_ZX:
|
|
|
|
axis_0 = Z_AXIS;
|
|
|
|
axis_1 = X_AXIS;
|
|
|
|
axis_linear = Y_AXIS;
|
|
|
|
break;
|
|
|
|
default: // case PLANE_SELECT_YZ:
|
|
|
|
axis_0 = Y_AXIS;
|
|
|
|
axis_1 = Z_AXIS;
|
|
|
|
axis_linear = X_AXIS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [12. Set length units ]: N/A
|
|
|
|
// Pre-convert XYZ coordinate values to millimeters, if applicable.
|
|
|
|
uint8_t idx;
|
|
|
|
if (gc_block.modal.units == UNITS_MODE_INCHES) {
|
|
|
|
for (idx=0; idx<N_AXIS; idx++) { // Axes indices are consistent, so loop may be used.
|
|
|
|
if (bit_istrue(axis_words,bit(idx)) ) {
|
|
|
|
gc_block.values.xyz[idx] *= MM_PER_INCH;
|
|
|
|
}
|
2014-02-09 18:46:34 +01:00
|
|
|
}
|
2012-11-19 03:52:16 +01:00
|
|
|
}
|
2012-02-11 19:59:35 +01:00
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// [13. Cutter radius compensation ]: G41/42 NOT SUPPORTED. Error, if enabled while G53 is active.
|
|
|
|
// [G40 Errors]: G2/3 arc is programmed after a G40. The linear move after disabling is less than tool diameter.
|
|
|
|
// NOTE: Since cutter radius compensation is never enabled, these G40 errors don't apply. Grbl supports G40
|
|
|
|
// only for the purpose to not error when G40 is sent with a g-code program header to setup the default modes.
|
2014-07-05 17:51:22 +02:00
|
|
|
|
|
|
|
// [14. Cutter length compensation ]: G43 NOT SUPPORTED, but G43.1 and G49 are.
|
2014-07-06 23:20:20 +02:00
|
|
|
// [G43.1 Errors]: Motion command in same line.
|
|
|
|
// NOTE: Although not explicitly stated so, G43.1 should be applied to only one valid
|
|
|
|
// axis that is configured (in config.h). There should be an error if the configured axis
|
|
|
|
// is absent or if any of the other axis words are present.
|
|
|
|
if (axis_command == AXIS_COMMAND_TOOL_LENGTH_OFFSET ) { // Indicates called in block.
|
|
|
|
if (gc_block.modal.tool_length == TOOL_LENGTH_OFFSET_ENABLE_DYNAMIC) {
|
|
|
|
if (axis_words ^ (1<<TOOL_LENGTH_OFFSET_AXIS)) { FAIL(STATUS_GCODE_G43_DYNAMIC_AXIS_ERROR); }
|
|
|
|
}
|
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// [15. Coordinate system selection ]: *N/A. Error, if cutter radius comp is active.
|
|
|
|
// TODO: An EEPROM read of the coordinate data may require a buffer sync when the cycle
|
|
|
|
// is active. The read pauses the processor temporarily and may cause a rare crash. For
|
|
|
|
// future versions on processors with enough memory, all coordinate data should be stored
|
|
|
|
// in memory and written to EEPROM only when there is not a cycle active.
|
|
|
|
memcpy(coordinate_data,gc_state.coord_system,sizeof(gc_state.coord_system));
|
|
|
|
if ( bit_istrue(command_words,bit(MODAL_GROUP_G12)) ) { // Check if called in block
|
|
|
|
if (gc_block.modal.coord_select > N_COORDINATE_SYSTEM) { FAIL(STATUS_GCODE_UNSUPPORTED_COORD_SYS); } // [Greater than N sys]
|
|
|
|
if (gc_state.modal.coord_select != gc_block.modal.coord_select) {
|
|
|
|
if (!(settings_read_coord_data(gc_block.modal.coord_select,coordinate_data))) { FAIL(STATUS_SETTING_READ_FAIL); }
|
|
|
|
}
|
2012-11-01 16:37:27 +01:00
|
|
|
}
|
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [16. Set path control mode ]: NOT SUPPORTED.
|
|
|
|
// [17. Set distance mode ]: N/A. G90.1 and G91.1 NOT SUPPORTED.
|
|
|
|
// [18. Set retract mode ]: NOT SUPPORTED.
|
|
|
|
|
|
|
|
// [19. Remaining non-modal actions ]: Check go to predefined position, set G10, or set axis offsets.
|
2014-07-04 02:13:39 +02:00
|
|
|
// NOTE: We need to separate the non-modal commands that are axis word-using (G10/G28/G30/G92), as these
|
2014-05-26 00:05:28 +02:00
|
|
|
// commands all treat axis words differently. G10 as absolute offsets or computes current position as
|
|
|
|
// the axis value, G92 similarly to G10 L20, and G28/30 as an intermediate target position that observes
|
|
|
|
// all the current coordinate system and G92 offsets.
|
|
|
|
switch (gc_block.non_modal_command) {
|
|
|
|
case NON_MODAL_SET_COORDINATE_DATA:
|
|
|
|
// [G10 Errors]: L missing and is not 2 or 20. P word missing. (Negative P value done.)
|
2014-07-04 02:13:39 +02:00
|
|
|
// [G10 L2 Errors]: R word NOT SUPPORTED. P value not 0 to nCoordSys(max 9). Axis words missing.
|
|
|
|
// [G10 L20 Errors]: P must be 0 to nCoordSys(max 9). Axis words missing.
|
|
|
|
if (!axis_words) { FAIL(STATUS_GCODE_NO_AXIS_WORDS) }; // [No axis words]
|
2014-05-26 00:05:28 +02:00
|
|
|
if (bit_isfalse(value_words,((1<<WORD_P)|(1<<WORD_L)))) { FAIL(STATUS_GCODE_VALUE_WORD_MISSING); } // [P/L word missing]
|
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
|
|
|
coord_select = trunc(gc_block.values.p); // Convert p value to int.
|
|
|
|
if (coord_select > N_COORDINATE_SYSTEM) { FAIL(STATUS_GCODE_UNSUPPORTED_COORD_SYS); } // [Greater than N sys]
|
2014-05-26 00:05:28 +02:00
|
|
|
if (gc_block.values.l != 20) {
|
|
|
|
if (gc_block.values.l == 2) {
|
|
|
|
if (bit_istrue(value_words,bit(WORD_R))) { FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); } // [G10 L2 R not supported]
|
|
|
|
} else { FAIL(STATUS_GCODE_UNSUPPORTED_COMMAND); } // [Unsupported L]
|
2012-02-11 19:59:35 +01:00
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
bit_false(value_words,(bit(WORD_L)|bit(WORD_P)));
|
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
|
|
|
|
|
|
|
// Determine coordinate system to change and try to load from EEPROM.
|
|
|
|
if (coord_select > 0) { coord_select--; } // Adjust P1-P6 index to EEPROM coordinate data indexing.
|
|
|
|
else { coord_select = gc_block.modal.coord_select; } // Index P0 as the active coordinate system
|
|
|
|
if (!settings_read_coord_data(coord_select,parameter_data)) { FAIL(STATUS_SETTING_READ_FAIL); } // [EEPROM read fail]
|
2014-05-26 00:05:28 +02:00
|
|
|
|
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
|
|
|
// Pre-calculate the coordinate data changes. NOTE: Uses parameter_data since coordinate_data may be in use by G54-59.
|
2014-05-26 00:05:28 +02:00
|
|
|
for (idx=0; idx<N_AXIS; idx++) { // Axes indices are consistent, so loop may be used.
|
2013-10-30 02:10:39 +01:00
|
|
|
// Update axes defined only in block. Always in machine coordinates. Can change non-active system.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (bit_istrue(axis_words,bit(idx)) ) {
|
|
|
|
if (gc_block.values.l == 20) {
|
2014-07-06 23:20:20 +02:00
|
|
|
// L20: Update coordinate system axis at current position (with modifiers) with programmed value
|
|
|
|
parameter_data[idx] = gc_state.position[idx]-gc_state.coord_offset[idx]-gc_block.values.xyz[idx];
|
|
|
|
if (idx == TOOL_LENGTH_OFFSET_AXIS) { parameter_data[idx] -= gc_state.tool_length_offset; }
|
2014-05-26 00:05:28 +02:00
|
|
|
} else {
|
2014-07-06 23:20:20 +02:00
|
|
|
// L2: Update coordinate system axis to programmed value.
|
|
|
|
parameter_data[idx] = gc_block.values.xyz[idx];
|
2012-11-01 16:37:27 +01:00
|
|
|
}
|
2012-02-11 19:59:35 +01:00
|
|
|
}
|
|
|
|
}
|
2009-01-25 00:48:56 +01:00
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case NON_MODAL_SET_COORDINATE_OFFSET:
|
2014-07-04 02:13:39 +02:00
|
|
|
// [G92 Errors]: No axis words.
|
|
|
|
if (!axis_words) { FAIL(STATUS_GCODE_NO_AXIS_WORDS); } // [No axis words]
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// Update axes defined only in block. Offsets current system to defined value. Does not update when
|
|
|
|
// active coordinate system is selected, but is still active unless G92.1 disables it.
|
|
|
|
for (idx=0; idx<N_AXIS; idx++) { // Axes indices are consistent, so loop may be used.
|
|
|
|
if (bit_istrue(axis_words,bit(idx)) ) {
|
|
|
|
gc_block.values.xyz[idx] = gc_state.position[idx]-coordinate_data[idx]-gc_block.values.xyz[idx];
|
2014-07-06 23:20:20 +02:00
|
|
|
if (idx == TOOL_LENGTH_OFFSET_AXIS) { gc_block.values.xyz[idx] -= gc_state.tool_length_offset; }
|
2014-05-26 00:05:28 +02:00
|
|
|
} else {
|
|
|
|
gc_block.values.xyz[idx] = gc_state.coord_offset[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-07-06 23:20:20 +02:00
|
|
|
|
2014-07-04 02:13:39 +02:00
|
|
|
// At this point, the rest of the explicit axis commands treat the axis values as the traditional
|
2014-05-26 00:05:28 +02:00
|
|
|
// target position with the coordinate system offsets, G92 offsets, absolute override, and distance
|
|
|
|
// modes applied. This includes the motion mode commands. We can now pre-compute the target position.
|
|
|
|
// NOTE: Tool offsets may be appended to these conversions when/if this feature is added.
|
2014-07-06 23:42:40 +02:00
|
|
|
if (axis_command != AXIS_COMMAND_TOOL_LENGTH_OFFSET ) { // TLO block any axis command.
|
2014-07-06 23:20:20 +02:00
|
|
|
if (axis_words) {
|
|
|
|
for (idx=0; idx<N_AXIS; idx++) { // Axes indices are consistent, so loop may be used to save flash space.
|
|
|
|
if ( bit_isfalse(axis_words,bit(idx)) ) {
|
|
|
|
gc_block.values.xyz[idx] = gc_state.position[idx]; // No axis word in block. Keep same axis position.
|
|
|
|
} else {
|
|
|
|
// Update specified value according to distance mode or ignore if absolute override is active.
|
|
|
|
// NOTE: G53 is never active with G28/30 since they are in the same modal group.
|
|
|
|
if (gc_block.non_modal_command != NON_MODAL_ABSOLUTE_OVERRIDE) {
|
|
|
|
// Apply coordinate offsets based on distance mode.
|
|
|
|
if (gc_block.modal.distance == DISTANCE_MODE_ABSOLUTE) {
|
|
|
|
gc_block.values.xyz[idx] += coordinate_data[idx] + gc_state.coord_offset[idx];
|
|
|
|
if (idx == TOOL_LENGTH_OFFSET_AXIS) { gc_block.values.xyz[idx] += gc_state.tool_length_offset; }
|
|
|
|
} else { // Incremental mode
|
|
|
|
gc_block.values.xyz[idx] += gc_state.position[idx];
|
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-11 19:59:35 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
2014-07-06 23:20:20 +02:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// Check remaining non-modal commands for errors.
|
|
|
|
switch (gc_block.non_modal_command) {
|
|
|
|
case NON_MODAL_GO_HOME_0:
|
|
|
|
// [G28 Errors]: Cutter compensation is enabled.
|
|
|
|
// Retreive G28 go-home position data (in machine coordinates) from EEPROM
|
2014-08-14 05:12:37 +02:00
|
|
|
if (!axis_words) { axis_command = AXIS_COMMAND_NONE; } // Set to none if no intermediate motion.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (!settings_read_coord_data(SETTING_INDEX_G28,parameter_data)) { FAIL(STATUS_SETTING_READ_FAIL); }
|
|
|
|
break;
|
|
|
|
case NON_MODAL_GO_HOME_1:
|
|
|
|
// [G30 Errors]: Cutter compensation is enabled.
|
|
|
|
// Retreive G30 go-home position data (in machine coordinates) from EEPROM
|
2014-08-14 05:12:37 +02:00
|
|
|
if (!axis_words) { axis_command = AXIS_COMMAND_NONE; } // Set to none if no intermediate motion.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (!settings_read_coord_data(SETTING_INDEX_G30,parameter_data)) { FAIL(STATUS_SETTING_READ_FAIL); }
|
|
|
|
break;
|
|
|
|
case NON_MODAL_SET_HOME_0: case NON_MODAL_SET_HOME_1:
|
|
|
|
// [G28.1/30.1 Errors]: Cutter compensation is enabled.
|
|
|
|
// NOTE: If axis words are passed here, they are interpreted as an implicit motion mode.
|
|
|
|
break;
|
|
|
|
case NON_MODAL_RESET_COORDINATE_OFFSET:
|
|
|
|
// NOTE: If axis words are passed here, they are interpreted as an implicit motion mode.
|
|
|
|
break;
|
|
|
|
case NON_MODAL_ABSOLUTE_OVERRIDE:
|
|
|
|
// [G53 Errors]: G0 and G1 are not active. Cutter compensation is enabled.
|
|
|
|
// NOTE: All explicit axis word commands are in this modal group. So no implicit check necessary.
|
|
|
|
if (!(gc_block.modal.motion == MOTION_MODE_SEEK || gc_block.modal.motion == MOTION_MODE_LINEAR)) {
|
|
|
|
FAIL(STATUS_GCODE_G53_INVALID_MOTION_MODE); // [G53 G0/1 not active]
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [20. Motion modes ]:
|
|
|
|
if (gc_block.modal.motion == MOTION_MODE_NONE) {
|
|
|
|
// [G80 Errors]: Axis word exist and are not used by a non-modal command.
|
2014-07-04 02:13:39 +02:00
|
|
|
if ((axis_words) && (axis_command != AXIS_COMMAND_NON_MODAL)) {
|
2014-05-26 00:05:28 +02:00
|
|
|
FAIL(STATUS_GCODE_AXIS_WORDS_EXIST); // [No axis words allowed]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check remaining motion modes, if axis word are implicit (exist and not used by G10/28/30/92), or
|
|
|
|
// was explicitly commanded in the g-code block.
|
2014-07-04 02:13:39 +02:00
|
|
|
} else if ( axis_command == AXIS_COMMAND_MOTION_MODE ) {
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2014-07-04 02:13:39 +02:00
|
|
|
if (gc_block.modal.motion == MOTION_MODE_SEEK) {
|
|
|
|
// [G0 Errors]: Axis letter not configured or without real value (done.)
|
|
|
|
// Axis words are optional. If missing, set axis command flag to ignore execution.
|
|
|
|
if (!axis_words) { axis_command = AXIS_COMMAND_NONE; }
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// All remaining motion modes (all but G0 and G80), require a valid feed rate value. In units per mm mode,
|
|
|
|
// the value must be positive. In inverse time mode, a positive value must be passed with each block.
|
2014-07-04 02:13:39 +02:00
|
|
|
} else {
|
2014-05-26 00:05:28 +02:00
|
|
|
// Check if feed rate is defined for the motion modes that require it.
|
|
|
|
if (gc_block.values.f == 0.0) { FAIL(STATUS_GCODE_UNDEFINED_FEED_RATE); } // [Feed rate undefined]
|
|
|
|
|
|
|
|
switch (gc_block.modal.motion) {
|
|
|
|
case MOTION_MODE_LINEAR:
|
2014-07-04 02:13:39 +02:00
|
|
|
// [G1 Errors]: Feed rate undefined. Axis letter not configured or without real value.
|
|
|
|
// Axis words are optional. If missing, set axis command flag to ignore execution.
|
|
|
|
if (!axis_words) { axis_command = AXIS_COMMAND_NONE; }
|
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
|
|
|
case MOTION_MODE_CW_ARC: case MOTION_MODE_CCW_ARC:
|
|
|
|
// [G2/3 Errors All-Modes]: Feed rate undefined.
|
|
|
|
// [G2/3 Radius-Mode Errors]: No axis words in selected plane. Target point is same as current.
|
|
|
|
// [G2/3 Offset-Mode Errors]: No axis words and/or offsets in selected plane. The radius to the current
|
|
|
|
// point and the radius to the target point differs more than 0.002mm (EMC def. 0.5mm OR 0.005mm and 0.1% radius).
|
|
|
|
// [G2/3 Full-Circle-Mode Errors]: NOT SUPPORTED. Axis words exist. No offsets programmed. P must be an integer.
|
|
|
|
// NOTE: Both radius and offsets are required for arc tracing and are pre-computed with the error-checking.
|
|
|
|
|
2014-07-04 02:13:39 +02:00
|
|
|
if (!axis_words) { FAIL(STATUS_GCODE_NO_AXIS_WORDS); } // [No axis words]
|
2014-05-26 00:05:28 +02:00
|
|
|
if (!(axis_words & (bit(axis_0)|bit(axis_1)))) { FAIL(STATUS_GCODE_NO_AXIS_WORDS_IN_PLANE); } // [No axis words in plane]
|
|
|
|
|
|
|
|
// Calculate the change in position along each selected axis
|
2014-07-11 18:14:01 +02:00
|
|
|
float x,y;
|
|
|
|
x = gc_block.values.xyz[axis_0]-gc_state.position[axis_0]; // Delta x between current position and target
|
|
|
|
y = gc_block.values.xyz[axis_1]-gc_state.position[axis_1]; // Delta y between current position and target
|
2014-07-05 00:08:15 +02:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
if (value_words & bit(WORD_R)) { // Arc Radius Mode
|
|
|
|
bit_false(value_words,bit(WORD_R));
|
|
|
|
if (gc_check_same_position(gc_state.position, gc_block.values.xyz)) { FAIL(STATUS_GCODE_INVALID_TARGET); } // [Invalid target]
|
|
|
|
|
|
|
|
// Convert radius value to proper units.
|
|
|
|
if (gc_block.modal.units == UNITS_MODE_INCHES) { gc_block.values.r *= MM_PER_INCH; }
|
|
|
|
/* We need to calculate the center of the circle that has the designated radius and passes
|
|
|
|
through both the current position and the target position. This method calculates the following
|
|
|
|
set of equations where [x,y] is the vector from current to target position, d == magnitude of
|
|
|
|
that vector, h == hypotenuse of the triangle formed by the radius of the circle, the distance to
|
|
|
|
the center of the travel vector. A vector perpendicular to the travel vector [-y,x] is scaled to the
|
|
|
|
length of h [-y/d*h, x/d*h] and added to the center of the travel vector [x/2,y/2] to form the new point
|
|
|
|
[i,j] at [x/2-y/d*h, y/2+x/d*h] which will be the center of our arc.
|
|
|
|
|
|
|
|
d^2 == x^2 + y^2
|
|
|
|
h^2 == r^2 - (d/2)^2
|
|
|
|
i == x/2 - y/d*h
|
|
|
|
j == y/2 + x/d*h
|
|
|
|
|
|
|
|
O <- [i,j]
|
|
|
|
- |
|
|
|
|
r - |
|
|
|
|
- |
|
|
|
|
- | h
|
|
|
|
- |
|
|
|
|
[0,0] -> C -----------------+--------------- T <- [x,y]
|
|
|
|
| <------ d/2 ---->|
|
|
|
|
|
|
|
|
C - Current position
|
|
|
|
T - Target position
|
|
|
|
O - center of circle that pass through both C and T
|
|
|
|
d - distance from C to T
|
|
|
|
r - designated radius
|
|
|
|
h - distance from center of CT to O
|
|
|
|
|
|
|
|
Expanding the equations:
|
|
|
|
|
|
|
|
d -> sqrt(x^2 + y^2)
|
|
|
|
h -> sqrt(4 * r^2 - x^2 - y^2)/2
|
|
|
|
i -> (x - (y * sqrt(4 * r^2 - x^2 - y^2)) / sqrt(x^2 + y^2)) / 2
|
|
|
|
j -> (y + (x * sqrt(4 * r^2 - x^2 - y^2)) / sqrt(x^2 + y^2)) / 2
|
|
|
|
|
|
|
|
Which can be written:
|
|
|
|
|
|
|
|
i -> (x - (y * sqrt(4 * r^2 - x^2 - y^2))/sqrt(x^2 + y^2))/2
|
|
|
|
j -> (y + (x * sqrt(4 * r^2 - x^2 - y^2))/sqrt(x^2 + y^2))/2
|
|
|
|
|
|
|
|
Which we for size and speed reasons optimize to:
|
|
|
|
|
|
|
|
h_x2_div_d = sqrt(4 * r^2 - x^2 - y^2)/sqrt(x^2 + y^2)
|
|
|
|
i = (x - (y * h_x2_div_d))/2
|
|
|
|
j = (y + (x * h_x2_div_d))/2
|
|
|
|
*/
|
|
|
|
|
|
|
|
// First, use h_x2_div_d to compute 4*h^2 to check if it is negative or r is smaller
|
|
|
|
// than d. If so, the sqrt of a negative number is complex and error out.
|
|
|
|
float h_x2_div_d = 4.0 * gc_block.values.r*gc_block.values.r - x*x - y*y;
|
|
|
|
|
|
|
|
if (h_x2_div_d < 0) { FAIL(STATUS_GCODE_ARC_RADIUS_ERROR); } // [Arc radius error]
|
|
|
|
|
|
|
|
// Finish computing h_x2_div_d.
|
|
|
|
h_x2_div_d = -sqrt(h_x2_div_d)/hypot_f(x,y); // == -(h * 2 / d)
|
|
|
|
// Invert the sign of h_x2_div_d if the circle is counter clockwise (see sketch below)
|
|
|
|
if (gc_block.modal.motion == MOTION_MODE_CCW_ARC) { h_x2_div_d = -h_x2_div_d; }
|
|
|
|
|
|
|
|
/* The counter clockwise circle lies to the left of the target direction. When offset is positive,
|
|
|
|
the left hand circle will be generated - when it is negative the right hand circle is generated.
|
|
|
|
|
|
|
|
T <-- Target position
|
|
|
|
|
|
|
|
^
|
|
|
|
Clockwise circles with this center | Clockwise circles with this center will have
|
|
|
|
will have > 180 deg of angular travel | < 180 deg of angular travel, which is a good thing!
|
|
|
|
\ | /
|
|
|
|
center of arc when h_x2_div_d is positive -> x <----- | -----> x <- center of arc when h_x2_div_d is negative
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
C <-- Current position
|
|
|
|
*/
|
|
|
|
// Negative R is g-code-alese for "I want a circle with more than 180 degrees of travel" (go figure!),
|
|
|
|
// even though it is advised against ever generating such circles in a single line of g-code. By
|
|
|
|
// inverting the sign of h_x2_div_d the center of the circles is placed on the opposite side of the line of
|
|
|
|
// travel and thus we get the unadvisably long arcs as prescribed.
|
|
|
|
if (gc_block.values.r < 0) {
|
|
|
|
h_x2_div_d = -h_x2_div_d;
|
|
|
|
gc_block.values.r = -gc_block.values.r; // Finished with r. Set to positive for mc_arc
|
|
|
|
}
|
|
|
|
// Complete the operation by calculating the actual center of the arc
|
|
|
|
gc_block.values.ijk[axis_0] = 0.5*(x-(y*h_x2_div_d));
|
|
|
|
gc_block.values.ijk[axis_1] = 0.5*(y+(x*h_x2_div_d));
|
|
|
|
|
|
|
|
} else { // Arc Center Format Offset Mode
|
|
|
|
if (!(ijk_words & (bit(axis_0)|bit(axis_1)))) { FAIL(STATUS_GCODE_NO_OFFSETS_IN_PLANE); } // [No offsets in plane]
|
|
|
|
bit_false(value_words,(bit(WORD_I)|bit(WORD_J)|bit(WORD_K)));
|
|
|
|
|
|
|
|
// Convert IJK values to proper units.
|
|
|
|
if (gc_block.modal.units == UNITS_MODE_INCHES) {
|
|
|
|
for (idx=0; idx<N_AXIS; idx++) { // Axes indices are consistent, so loop may be used to save flash space.
|
|
|
|
if (ijk_words & bit(idx)) { gc_block.values.ijk[idx] *= MM_PER_INCH; }
|
|
|
|
}
|
|
|
|
}
|
2014-07-02 16:39:19 +02:00
|
|
|
|
|
|
|
// Arc radius from center to target
|
2014-05-26 00:05:28 +02:00
|
|
|
x -= gc_block.values.ijk[axis_0]; // Delta x between circle center and target
|
|
|
|
y -= gc_block.values.ijk[axis_1]; // Delta y between circle center and target
|
2014-07-02 16:39:19 +02:00
|
|
|
float target_r = hypot_f(x,y);
|
|
|
|
|
|
|
|
// Compute arc radius for mc_arc. Defined from current location to center.
|
|
|
|
gc_block.values.r = hypot_f(gc_block.values.ijk[axis_0], gc_block.values.ijk[axis_1]);
|
2014-06-01 07:23:21 +02:00
|
|
|
|
2014-07-02 16:39:19 +02:00
|
|
|
// Compute difference between current location and target radii for final error-checks.
|
|
|
|
float delta_r = fabs(target_r-gc_block.values.r);
|
|
|
|
if (delta_r > 0.005) {
|
|
|
|
if (delta_r > 0.5) { FAIL(STATUS_GCODE_INVALID_TARGET); } // [Arc definition error] > 0.5mm
|
|
|
|
if (delta_r > (0.001*gc_block.values.r)) { FAIL(STATUS_GCODE_INVALID_TARGET); } // [Arc definition error] > 0.005mm AND 0.1% radius
|
2014-06-01 07:23:21 +02:00
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-10-02 04:22:16 +02:00
|
|
|
case MOTION_MODE_PROBE_TOWARD: case MOTION_MODE_PROBE_TOWARD_NO_ERROR:
|
|
|
|
case MOTION_MODE_PROBE_AWAY: case MOTION_MODE_PROBE_AWAY_NO_ERROR:
|
2014-05-26 00:05:28 +02:00
|
|
|
// [G38 Errors]: Target is same current. No axis words. Cutter compensation is enabled. Feed rate
|
2014-08-01 16:29:35 +02:00
|
|
|
// is undefined. Probe is triggered. NOTE: Probe check moved to probe cycle. Instead of returning
|
|
|
|
// an error, it issues an alarm to prevent further motion to the probe. It's also done there to
|
|
|
|
// allow the planner buffer to empty and move off the probe trigger before another probing cycle.
|
2014-07-04 02:13:39 +02:00
|
|
|
if (!axis_words) { FAIL(STATUS_GCODE_NO_AXIS_WORDS); } // [No axis words]
|
2014-05-26 00:05:28 +02:00
|
|
|
if (gc_check_same_position(gc_state.position, gc_block.values.xyz)) { FAIL(STATUS_GCODE_INVALID_TARGET); } // [Invalid target]
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
// [21. Program flow ]: No error checks required.
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// [0. Non-specific error-checks]: Complete unused value words check, i.e. IJK used when in arc
|
|
|
|
// radius mode, or axis words that aren't used in the block.
|
|
|
|
bit_false(value_words,(bit(WORD_N)|bit(WORD_F)|bit(WORD_S)|bit(WORD_T))); // Remove single-meaning value words.
|
2014-07-04 02:13:39 +02:00
|
|
|
if (axis_command) { bit_false(value_words,(bit(WORD_X)|bit(WORD_Y)|bit(WORD_Z))); } // Remove axis words.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (value_words) { FAIL(STATUS_GCODE_UNUSED_WORDS); } // [Unused words]
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------------------
|
|
|
|
STEP 4: EXECUTE!!
|
|
|
|
Assumes that all error-checking has been completed and no failure modes exist. We just
|
|
|
|
need to update the state and execute the block according to the order-of-execution.
|
|
|
|
*/
|
|
|
|
|
2014-10-02 04:22:16 +02:00
|
|
|
// [0. Non-specific/common error-checks and miscellaneous setup]:
|
|
|
|
gc_state.line_number = gc_block.values.n;
|
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [1. Comments feedback ]: NOT SUPPORTED
|
|
|
|
|
|
|
|
// [2. Set feed rate mode ]:
|
|
|
|
gc_state.modal.feed_rate = gc_block.modal.feed_rate;
|
|
|
|
|
|
|
|
// [3. Set feed rate ]:
|
|
|
|
gc_state.feed_rate = gc_block.values.f; // Always copy this value. See feed rate error-checking.
|
|
|
|
|
|
|
|
// [4. Set spindle speed ]:
|
|
|
|
if (gc_state.spindle_speed != gc_block.values.s) {
|
|
|
|
// Update running spindle only if not in check mode and not already enabled.
|
2015-01-15 06:14:52 +01:00
|
|
|
if (gc_state.modal.spindle != SPINDLE_DISABLE) { spindle_run(gc_state.modal.spindle, gc_block.values.s); }
|
|
|
|
gc_state.spindle_speed = gc_block.values.s;
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
// [5. Select tool ]: NOT SUPPORTED. Only tracks tool value.
|
|
|
|
gc_state.tool = gc_block.values.t;
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// [6. Change tool ]: NOT SUPPORTED
|
|
|
|
|
|
|
|
// [7. Spindle control ]:
|
|
|
|
if (gc_state.modal.spindle != gc_block.modal.spindle) {
|
|
|
|
// Update spindle control and apply spindle speed when enabling it in this block.
|
2015-01-15 06:14:52 +01:00
|
|
|
spindle_run(gc_block.modal.spindle, gc_state.spindle_speed);
|
|
|
|
gc_state.modal.spindle = gc_block.modal.spindle;
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// [8. Coolant control ]:
|
|
|
|
if (gc_state.modal.coolant != gc_block.modal.coolant) {
|
2015-01-15 06:14:52 +01:00
|
|
|
coolant_run(gc_block.modal.coolant);
|
2014-05-26 00:05:28 +02:00
|
|
|
gc_state.modal.coolant = gc_block.modal.coolant;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [9. Enable/disable feed rate or spindle overrides ]: NOT SUPPORTED
|
|
|
|
|
|
|
|
// [10. Dwell ]:
|
|
|
|
if (gc_block.non_modal_command == NON_MODAL_DWELL) { mc_dwell(gc_block.values.p); }
|
|
|
|
|
|
|
|
// [11. Set active plane ]:
|
|
|
|
gc_state.modal.plane_select = gc_block.modal.plane_select;
|
|
|
|
|
|
|
|
// [12. Set length units ]:
|
|
|
|
gc_state.modal.units = gc_block.modal.units;
|
|
|
|
|
2015-01-15 06:14:52 +01:00
|
|
|
// [13. Cutter radius compensation ]: G41/42 NOT SUPPORTED
|
|
|
|
// gc_state.modal.cutter_comp = gc_block.modal.cutter_comp; // NOTE: Not needed since always disabled.
|
2014-05-26 00:05:28 +02:00
|
|
|
|
2014-07-06 23:20:20 +02:00
|
|
|
// [14. Cutter length compensation ]: G43.1 and G49 supported. G43 NOT SUPPORTED.
|
|
|
|
// NOTE: If G43 were supported, its operation wouldn't be any different from G43.1 in terms
|
|
|
|
// of execution. The error-checking step would simply load the offset value into the correct
|
|
|
|
// axis of the block XYZ value array.
|
|
|
|
if (axis_command == AXIS_COMMAND_TOOL_LENGTH_OFFSET ) { // Indicates a change.
|
|
|
|
gc_state.modal.tool_length = gc_block.modal.tool_length;
|
|
|
|
if (gc_state.modal.tool_length == TOOL_LENGTH_OFFSET_ENABLE_DYNAMIC) { // G43.1
|
|
|
|
gc_state.tool_length_offset = gc_block.values.xyz[TOOL_LENGTH_OFFSET_AXIS];
|
|
|
|
} else { // G49
|
|
|
|
gc_state.tool_length_offset = 0.0;
|
|
|
|
}
|
|
|
|
}
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// [15. Coordinate system selection ]:
|
|
|
|
if (gc_state.modal.coord_select != gc_block.modal.coord_select) {
|
|
|
|
gc_state.modal.coord_select = gc_block.modal.coord_select;
|
|
|
|
memcpy(gc_state.coord_system,coordinate_data,sizeof(coordinate_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
// [16. Set path control mode ]: NOT SUPPORTED
|
|
|
|
|
|
|
|
// [17. Set distance mode ]:
|
|
|
|
gc_state.modal.distance = gc_block.modal.distance;
|
|
|
|
|
|
|
|
// [18. Set retract mode ]: NOT SUPPORTED
|
|
|
|
|
|
|
|
// [19. Go to predefined position, Set G10, or Set axis offsets ]:
|
|
|
|
switch(gc_block.non_modal_command) {
|
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
|
|
|
case NON_MODAL_SET_COORDINATE_DATA:
|
|
|
|
settings_write_coord_data(coord_select,parameter_data);
|
2014-05-26 00:05:28 +02:00
|
|
|
// Update system coordinate system if currently active.
|
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
|
|
|
if (gc_state.modal.coord_select == coord_select) { memcpy(gc_state.coord_system,parameter_data,sizeof(parameter_data)); }
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
|
|
|
case NON_MODAL_GO_HOME_0: case NON_MODAL_GO_HOME_1:
|
|
|
|
// Move to intermediate position before going home. Obeys current coordinate system and offsets
|
|
|
|
// and absolute and incremental modes.
|
2014-07-04 02:13:39 +02:00
|
|
|
if (axis_command) {
|
2014-02-26 20:10:07 +01:00
|
|
|
#ifdef USE_LINE_NUMBERS
|
2014-10-02 04:22:16 +02:00
|
|
|
mc_line(gc_block.values.xyz, -1.0, false, gc_state.line_number);
|
2014-02-26 20:10:07 +01:00
|
|
|
#else
|
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
|
|
|
mc_line(gc_block.values.xyz, -1.0, false);
|
2014-02-26 20:10:07 +01:00
|
|
|
#endif
|
2012-02-11 19:59:35 +01:00
|
|
|
}
|
2014-02-26 20:10:07 +01:00
|
|
|
#ifdef USE_LINE_NUMBERS
|
2014-10-02 04:22:16 +02:00
|
|
|
mc_line(parameter_data, -1.0, false, gc_state.line_number);
|
2014-02-26 20:10:07 +01:00
|
|
|
#else
|
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
|
|
|
mc_line(parameter_data, -1.0, false);
|
2014-02-26 20:10:07 +01:00
|
|
|
#endif
|
2014-05-26 00:05:28 +02:00
|
|
|
memcpy(gc_state.position, parameter_data, sizeof(parameter_data));
|
2012-11-01 16:37:27 +01:00
|
|
|
break;
|
2014-05-26 00:05:28 +02:00
|
|
|
case NON_MODAL_SET_HOME_0:
|
|
|
|
settings_write_coord_data(SETTING_INDEX_G28,gc_state.position);
|
|
|
|
break;
|
|
|
|
case NON_MODAL_SET_HOME_1:
|
|
|
|
settings_write_coord_data(SETTING_INDEX_G30,gc_state.position);
|
2012-11-01 16:37:27 +01:00
|
|
|
break;
|
2012-02-11 19:59:35 +01:00
|
|
|
case NON_MODAL_SET_COORDINATE_OFFSET:
|
2014-05-26 00:05:28 +02:00
|
|
|
memcpy(gc_state.coord_offset,gc_block.values.xyz,sizeof(gc_block.values.xyz));
|
2012-02-11 19:59:35 +01:00
|
|
|
break;
|
|
|
|
case NON_MODAL_RESET_COORDINATE_OFFSET:
|
2014-05-26 00:05:28 +02:00
|
|
|
clear_vector(gc_state.coord_offset); // Disable G92 offsets by zeroing offset vector.
|
2012-02-11 19:59:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
|
|
|
|
// [20. Motion modes ]:
|
2012-02-11 19:59:35 +01:00
|
|
|
// NOTE: Commands G10,G28,G30,G92 lock out and prevent axis words from use in motion modes.
|
|
|
|
// Enter motion modes only if there are axis words or a motion mode command word in the block.
|
2014-05-26 00:05:28 +02:00
|
|
|
gc_state.modal.motion = gc_block.modal.motion;
|
|
|
|
if (gc_state.modal.motion != MOTION_MODE_NONE) {
|
2014-07-04 02:13:39 +02:00
|
|
|
if (axis_command == AXIS_COMMAND_MOTION_MODE) {
|
2014-05-26 00:05:28 +02:00
|
|
|
switch (gc_state.modal.motion) {
|
|
|
|
case MOTION_MODE_SEEK:
|
2014-02-26 20:10:07 +01:00
|
|
|
#ifdef USE_LINE_NUMBERS
|
2014-10-02 04:22:16 +02:00
|
|
|
mc_line(gc_block.values.xyz, -1.0, false, gc_state.line_number);
|
2014-02-26 20:10:07 +01:00
|
|
|
#else
|
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
|
|
|
mc_line(gc_block.values.xyz, -1.0, false);
|
2014-02-26 20:10:07 +01:00
|
|
|
#endif
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
|
|
|
case MOTION_MODE_LINEAR:
|
2014-02-26 20:10:07 +01:00
|
|
|
#ifdef USE_LINE_NUMBERS
|
2014-10-02 04:22:16 +02:00
|
|
|
mc_line(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, gc_state.line_number);
|
2014-02-26 20:10:07 +01:00
|
|
|
#else
|
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
|
|
|
mc_line(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate);
|
2014-02-26 20:10:07 +01:00
|
|
|
#endif
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
2014-10-02 04:22:16 +02:00
|
|
|
case MOTION_MODE_CW_ARC:
|
|
|
|
#ifdef USE_LINE_NUMBERS
|
|
|
|
mc_arc(gc_state.position, gc_block.values.xyz, gc_block.values.ijk, gc_block.values.r,
|
|
|
|
gc_state.feed_rate, gc_state.modal.feed_rate, axis_0, axis_1, axis_linear, true, gc_state.line_number);
|
|
|
|
#else
|
|
|
|
mc_arc(gc_state.position, gc_block.values.xyz, gc_block.values.ijk, gc_block.values.r,
|
|
|
|
gc_state.feed_rate, gc_state.modal.feed_rate, axis_0, axis_1, axis_linear, true);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case MOTION_MODE_CCW_ARC:
|
2014-02-26 20:10:07 +01:00
|
|
|
#ifdef USE_LINE_NUMBERS
|
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
|
|
|
mc_arc(gc_state.position, gc_block.values.xyz, gc_block.values.ijk, gc_block.values.r,
|
2014-10-02 04:22:16 +02:00
|
|
|
gc_state.feed_rate, gc_state.modal.feed_rate, axis_0, axis_1, axis_linear, false, gc_state.line_number);
|
2014-02-26 20:10:07 +01:00
|
|
|
#else
|
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
|
|
|
mc_arc(gc_state.position, gc_block.values.xyz, gc_block.values.ijk, gc_block.values.r,
|
2014-10-02 04:22:16 +02:00
|
|
|
gc_state.feed_rate, gc_state.modal.feed_rate, axis_0, axis_1, axis_linear, false);
|
2014-02-26 20:10:07 +01:00
|
|
|
#endif
|
2014-05-26 00:05:28 +02:00
|
|
|
break;
|
2014-10-02 04:22:16 +02:00
|
|
|
case MOTION_MODE_PROBE_TOWARD:
|
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
|
|
|
// NOTE: gc_block.values.xyz is returned from mc_probe_cycle with the updated position value. So
|
|
|
|
// upon a successful probing cycle, the machine position and the returned value should be the same.
|
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
|
|
|
#ifdef USE_LINE_NUMBERS
|
2014-10-02 04:22:16 +02:00
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, false, false, gc_state.line_number);
|
|
|
|
#else
|
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, false, false);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case MOTION_MODE_PROBE_TOWARD_NO_ERROR:
|
|
|
|
#ifdef USE_LINE_NUMBERS
|
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, false, true, gc_state.line_number);
|
|
|
|
#else
|
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, false, true);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case MOTION_MODE_PROBE_AWAY:
|
|
|
|
#ifdef USE_LINE_NUMBERS
|
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, true, false, gc_state.line_number);
|
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
|
|
|
#else
|
2014-10-02 04:22:16 +02:00
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, true, false);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case MOTION_MODE_PROBE_AWAY_NO_ERROR:
|
|
|
|
#ifdef USE_LINE_NUMBERS
|
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, true, true, gc_state.line_number);
|
|
|
|
#else
|
|
|
|
mc_probe_cycle(gc_block.values.xyz, gc_state.feed_rate, gc_state.modal.feed_rate, true, true);
|
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
|
|
|
#endif
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
2012-02-11 19:59:35 +01:00
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// As far as the parser is concerned, the position is now == target. In reality the
|
|
|
|
// motion control system might still be processing the action and the real tool position
|
|
|
|
// in any intermediate location.
|
2014-10-02 04:22:16 +02:00
|
|
|
memcpy(gc_state.position, gc_block.values.xyz, sizeof(gc_block.values.xyz)); // gc_state.position[] = gc_block.values.xyz[]
|
2014-05-26 00:05:28 +02:00
|
|
|
}
|
2009-01-25 00:48:56 +01:00
|
|
|
}
|
|
|
|
|
2014-05-26 00:05:28 +02:00
|
|
|
// [21. Program flow ]:
|
2012-02-11 19:59:35 +01:00
|
|
|
// M0,M1,M2,M30: Perform non-running program flow actions. During a program pause, the buffer may
|
|
|
|
// refill and can only be resumed by the cycle start run-time command.
|
2014-05-26 00:05:28 +02:00
|
|
|
gc_state.modal.program_flow = gc_block.modal.program_flow;
|
|
|
|
if (gc_state.modal.program_flow) {
|
2014-02-09 18:46:34 +01:00
|
|
|
protocol_buffer_synchronize(); // Finish all remaining buffered motions. Program paused when complete.
|
2015-02-12 05:19:00 +01:00
|
|
|
|
|
|
|
sys.suspend = true;
|
|
|
|
protocol_execute_realtime(); // Suspend execution. For both program pause or program end.
|
2014-02-09 18:46:34 +01:00
|
|
|
|
2012-09-20 04:50:24 +02:00
|
|
|
// If complete, reset to reload defaults (G92.2,G54,G17,G90,G94,M48,G40,M5,M9). Otherwise,
|
|
|
|
// re-enable program flow after pause complete, where cycle start will resume the program.
|
2014-05-26 00:05:28 +02:00
|
|
|
if (gc_state.modal.program_flow == PROGRAM_FLOW_COMPLETED) { mc_reset(); }
|
2015-02-12 05:19:00 +01:00
|
|
|
else { gc_state.modal.program_flow = PROGRAM_FLOW_RUNNING; } // Resume from program pause.
|
2009-01-25 00:48:56 +01:00
|
|
|
}
|
2013-10-30 02:10:39 +01:00
|
|
|
|
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
|
|
|
// TODO: % to denote start of program. Sets auto cycle start?
|
2014-05-26 00:05:28 +02:00
|
|
|
return(STATUS_OK);
|
|
|
|
}
|
|
|
|
|
2013-10-30 02:10:39 +01:00
|
|
|
|
2011-01-31 21:32:36 +01:00
|
|
|
/*
|
2012-02-11 19:59:35 +01:00
|
|
|
Not supported:
|
2011-01-31 21:32:36 +01:00
|
|
|
|
2010-07-03 00:04:10 +02:00
|
|
|
- Canned cycles
|
|
|
|
- Tool radius compensation
|
|
|
|
- A,B,C-axes
|
|
|
|
- Evaluation of expressions
|
|
|
|
- Variables
|
2012-11-16 05:53:11 +01:00
|
|
|
- Override control (TBD)
|
2012-02-11 19:59:35 +01:00
|
|
|
- Tool changes
|
2012-11-16 05:53:11 +01:00
|
|
|
- Switches
|
2012-09-22 01:55:02 +02:00
|
|
|
|
|
|
|
(*) Indicates optional parameter, enabled through config.h and re-compile
|
2012-02-11 19:59:35 +01:00
|
|
|
group 0 = {G92.2, G92.3} (Non modal: Cancel and re-enable G92 offsets)
|
2014-05-26 00:05:28 +02:00
|
|
|
group 1 = {G81 - G89} (Motion modes: Canned cycles)
|
2012-11-16 05:53:11 +01:00
|
|
|
group 4 = {M1} (Optional stop, ignored)
|
2012-02-11 19:59:35 +01:00
|
|
|
group 6 = {M6} (Tool change)
|
2014-07-06 23:42:40 +02:00
|
|
|
group 7 = {G40, G41, G42} cutter radius compensation
|
|
|
|
group 8 = {G43} tool length offset (But G43.1/G94 IS SUPPORTED)
|
2012-09-22 01:55:02 +02:00
|
|
|
group 8 = {*M7} enable mist coolant
|
2010-07-03 00:04:10 +02:00
|
|
|
group 9 = {M48, M49} enable/disable feed and speed override switches
|
2014-07-06 23:42:40 +02:00
|
|
|
group 10 = {G98, G99} return mode canned cycles
|
2010-07-03 00:04:10 +02:00
|
|
|
group 13 = {G61, G61.1, G64} path control mode
|
2011-10-12 04:51:04 +02:00
|
|
|
*/
|