File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -313,9 +313,9 @@ uint8_t gc_execute_line(char *line)
313
313
case 'R' : word_bit = WORD_R ; gc_block .values .r = value ; break ;
314
314
case 'S' : word_bit = WORD_S ; gc_block .values .s = value ; break ;
315
315
case 'T' : word_bit = WORD_T ;
316
- if (value > MAX_TOOL_NUMBER ) { FAIL (STATUS_GCODE_MAX_VALUE_EXCEEDED ); }
316
+ if (value > MAX_TOOL_NUMBER ) { FAIL (STATUS_GCODE_MAX_VALUE_EXCEEDED ); }
317
317
gc_block .values .t = int_value ;
318
- break ;
318
+ break ;
319
319
case 'X' : word_bit = WORD_X ; gc_block .values .xyza [X_AXIS ] = value ; axis_words |= (1 <<X_AXIS ); break ;
320
320
case 'Y' : word_bit = WORD_Y ; gc_block .values .xyza [Y_AXIS ] = value ; axis_words |= (1 <<Y_AXIS ); break ;
321
321
case 'Z' : word_bit = WORD_Z ; gc_block .values .xyza [Z_AXIS ] = value ; axis_words |= (1 <<Z_AXIS ); break ;
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ typedef struct {
199
199
200
200
typedef struct {
201
201
float f ; // Feed
202
- float ijk [3 ]; // I,J,K Axis arc offsets
202
+ float ijk [N_AXIS ]; // I,J,K Axis arc offsets
203
203
uint8_t l ; // G10 or canned cycles parameters
204
204
int32_t n ; // Line number
205
205
float p ; // G10 or dwell parameters
Original file line number Diff line number Diff line change 23
23
24
24
// Grbl versioning system
25
25
#define GRBL_VERSION "1.1f"
26
- #define GRBL_VERSION_BUILD "20170511 "
26
+ #define GRBL_VERSION_BUILD "20171008 "
27
27
28
28
// Define standard libraries used by Grbl.
29
29
#include <avr/io.h>
You can’t perform that action at this time.
0 commit comments