The "
F" (feedrate) on the control that I use (840D) can be programmed 2 ways.
1)
F100
G01 X1.000 Y1.000
G01 X1.000 Y10.000 F30
G01 X1.000 Y10.875 F100
G01 X1.000 Y11.000
M71 |
2)
N01 G01 X1.000 Y1.000 F100 N02 G01 X1.000 Y10.000 N03 G01 X1.000 Y10.875 F30 N04 G01 X1.000 Y11.000 F100 N05 M71 |
Both of the above examples will do the exact same thing when you run the program.
You should, (& I say should because all controls are not equal) be able to run both code examples.
You'll notice I didn't put an "
F" on line
N02 thats ok because it is picking up the last feedrate from the previous line "
N01" so the feedrate for line
N02 = "
F100".
You could have a feedrate "
F" on every line If you wanted.
Hope I'm helping.
.