So I've noticed that most of the post programs seem to assign different end mills to different 'tools' T1, T2 etc.
But in the config a tool is not a cutter, but the spindle itself.
This obviously causes errors about tools not being defined.
So what is the correct way to deal with this?
Am I supposed to define as many tools as I can ever imagine needing to change all with the same definition?
; CNC Mode
M950 R0 C"fan0" L24100 ; Create spindle index 0, with PWM pin on fan0 and 24000 RPM achieved at full PWM
M563 P1 S"Spindle T1" R0 ; Create tool 1 with spindle 0 and call it "Spindle T1"
M563 P2 S"Spindle T2" R0 ; Create tool 2 with spindle 0 and call it "Spindle T2"
M563 P3 S"Spindle T3" R0 ; Create tool 3 with spindle 0 and call it "Spindle T3"
...
...
M453