My previous machine ran GRBL, and when a job was interrupted, one could input “$G” and view the status of the machine before resuming. Is there a similar function in the 1F controller? Nice to know, for example, if one is in the G90 (part center) or G91 (Relative) mode before attempting to go on. Thanks, ~Mike
I haven’t come across a method to list out all of the parameters but a few I’ve used (you can use the debug command to print the value to the screen)
(debug, #<_absolute>) ;G90 Returns 0 if false 1 if true
(debug, #<_incremental>) ;G91 Returns 0 if false 1 if true
(debug, #<_metric>) ;G21 metric Returns 0 if false 1 if true
(debug, #<_imperial>) ;g20 imperial Returns 0 if false 1 if true
There’s a list of them here:
https://linuxcnc.org/docs/html/gcode/overview.html#cha:g-code-overview