G0 rapid move
I understand G0 and G1 is considered the same, according to the reprap specification, and I can see it's impemented accordingly, in the code.
void Commands::processGCode(GCode *com)
{
uint32_t codenum; //throw away variable
switch(com->G)
{
case 0: // G0 -> G1
case 1: // G1
if(com->hasS()) Printer::setNoDestinationCheck(com->S != 0);
Are there any plans by chance that G0 rapid moves would be implemented in the firmware? I have a printer, that can be equipped with a spindle too, and can be used as a CNC machine, but I need a firmware that can do real G0 rapid moves.
Thanks in advance,
Miki.
Comments