Skip to content

Commit c89a93c

Browse files
author
Miroslav Talasek
committed
fix fatal owerflow error
1 parent 02dc42f commit c89a93c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grbl/gcode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ typedef struct {
202202

203203
typedef struct {
204204
float f; // Feed
205-
float ijk[3]; // I,J,K Axis arc offsets
205+
float ijk[N_AXIS]; // I,J,K Axis arc offsets
206206
uint8_t l; // G10 or canned cycles parameters
207207
int32_t n; // Line number
208208
float p; // G10 or dwell parameters

0 commit comments

Comments
 (0)