Pushed bug fixes. Updated readme.
- G18 plane select fix from XZ-plane to ZX-plane per right hand rule. - Added volatile declaration for rx_buffer_tail in serial.c. No real effect to operation as avr-gcc adds this upon compilation. Helps with porting issues when using a different compiler.
This commit is contained in:
parent
cc3212d54a
commit
d00525d384
3 changed files with 18 additions and 12 deletions
2
gcode.c
2
gcode.c
|
|
@ -131,7 +131,7 @@ uint8_t gc_execute_line(char *line)
|
|||
case 4: non_modal_action = NON_MODAL_DWELL; break;
|
||||
case 10: non_modal_action = NON_MODAL_SET_COORDINATE_DATA; break;
|
||||
case 17: select_plane(X_AXIS, Y_AXIS, Z_AXIS); break;
|
||||
case 18: select_plane(X_AXIS, Z_AXIS, Y_AXIS); break;
|
||||
case 18: select_plane(Z_AXIS, X_AXIS, Y_AXIS); break;
|
||||
case 19: select_plane(Y_AXIS, Z_AXIS, X_AXIS); break;
|
||||
case 20: gc.inches_mode = true; break;
|
||||
case 21: gc.inches_mode = false; break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue