As it turns out there is some math required to figure out some of the GRBL values! Although GRBL is no longer being developed, its still very popular and Nikodem used this for the orginal IndyMill so not about to re-invent the wheel for a domain in which I have very little understanding!
Most of the below is straight from the docs
Misc
1 | $0=10 (step pulse, usec) |
Cartesian – [X,Y,Z] steps/mm
Stepper motor steps:
1 | motor_steps = degrees_in_a_circle / stepper_motor_step_angle |
Driver micro steps:
(typically 1, 2, 4, 8, or 16). Using high microstep values (ie 16) can reduce your stepper motor torque, so use the lowest that gives you the desired axis resolution and comfortable running properties.
1 | microsteps are calculated based on the dip switchs on the stepper drivers |
MM per revolution:
1 | 1605 ball screws for x,y |
Finally some math:
1 | x,y |
Now the resulting GRBL:
1 | $100=320 (x, step/mm) |
Also see grbl settings 101 a how to guide
Rates
1 | $110=635.000 (x max rate, mm/min) |
Acceleration
1 | $120=50.000 (x accel, mm/sec^2) |
Maximum Travel
1 | $130=225.000 (x max travel, mm) |