Page 1 of 1

Kflop cupported codes

Posted: Fri Oct 09, 2020 3:39 am
by SamMarrocco
Is there a current list of supported gcodes? In particular, I’m looking for all supported threading gcodes, but a complete list would be handy. For example, G32 is mentioned in some docs, but not listed in “supported gcode commands”. Is there a current, complete list? Or perhaps this info is tucked inside a header file somewhere that I could access?
Thanks!

Re: Kflop cupported codes

Posted: Fri Oct 09, 2020 5:17 pm
by TomKerekes
Hi Sam,

The file rs274ngc.cpp has a GCode array:

const int _gees[] = {

That is the definitive list of all supported GCodes and what modal group they belong. -1 = not implemented.

HTH

Re: Kflop cupported codes

Posted: Wed Oct 14, 2020 12:41 am
by SamMarrocco
Thanks, Tom. That's what I needed.