I’m making a PC board, and would like to know why the following extract won’t parse
F300
G01 Z-0.05
F600
Xloc Yloc
Xloc Yloc
…
I’ve had to modify it to the following to get it to work, but the original seems correct
F300
G01 Z-0.05F300
F600
G01 Xloc YlocF600
Xloc Yloc
…
I see that the G code samples in wiki.shapeoko.com all show the F command after the first target address. But the PCB2Gcode output seems logical too. Should it not be permissible?