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!
Kflop cupported codes
Moderators: TomKerekes, dynomotion
- TomKerekes
- Posts: 2741
- Joined: Mon Dec 04, 2017 1:49 am
Re: Kflop cupported codes
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
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
Regards,
Tom Kerekes
Dynomotion, Inc.
Tom Kerekes
Dynomotion, Inc.
-
- Posts: 85
- Joined: Fri Apr 27, 2018 12:44 pm
Re: Kflop cupported codes
Thanks, Tom. That's what I needed.