M425 - Backlash compensation
Description
Backlash compensation will add extra steps to one or more segments whenever a motor reverses direction.
By default, steps are added to the first segment after a direction change. This gives the best dimensional accuracy but may cause marks to appear in the print. Smoothing spreads the added steps over multiple consecutive segments to prevent blemishes in the print, at the expense of dimensional accuracy.
Backlash compensation can be configured at either compile-time or run-time. Enable BACKLASH_GCODE to turn on M425 and a “Backlash” menu item.
Backlash can be measured automatically on all axes with G425 or on Z only with G29 when MEASURE_BACKLASH_WHEN_PROBING is enabled.
Notes
Requires BACKLASH_COMPENSATION, BACKLASH_GCODE and the following parameters:
BACKLASH_DISTANCE_MMspecifies the default backlash on the X, Y and Z axis.BACKLASH_CORRECTIONspecifies the default backlash correction (0.0 = none; 1.0 = 100%).BACKLASH_SMOOTHING_MMenables backlash smoothing over a specified distance.BACKLASH_GCODEenablesM425for run-time tuning of backlash.MEASURE_BACKLASH_WHEN_PROBINGturns on Z backlash measurement when probing (G29).- Use
BACKLASH_MEASUREMENT_LIMIT,BACKLASH_MEASUREMENT_RESOLUTIONandBACKLASH_MEASUREMENT_FEEDRATEto configureG29backlash measurement.
Parameters
M425
[F<value>]
[X<linear>]
[Y<linear>]
[Z<linear>]
[Z]
[F<value>]
|
Enable or disables backlash correction, or sets an intermediate fade-out (0.0 = none; 1.0 = 100%) |
[X<linear>]
|
Set the backlash distance on X (mm; 0 to disable) |
[Y<linear>]
|
Set the backlash distance on Y (mm; 0 to disable) |
[Z<linear>]
|
Set the backlash distance on Z (mm; 0 to disable) |
[Z]
|
When |
Examples
Manually configure backlash compensation:
M425 X0.1 Y0.2 Z0.3 ; Set backlash to specific values for all axis
M425 F1 ; Enable backlash compensation at 100%Automatically measure X, Y, and Z backlash using G425:
G425 ; Perform a full calibration
M425 F1 ; Use full measured value of backlash on X, Y and ZG425 automatically loads the measured backlash into the backlash distance, but will not enable backlash compensation.
To automatically measure Z backlash when probing with MEASURE_BACKLASH_WHEN_PROBING:
G29 ; Perform probe and measure backlash on Z
M425 F1 Z ; Use full measured value of backlash on ZMEASURE_BACKLASH_WHEN_PROBING measures backlash, but does not update the configured backlash distance. The measured value should be activated by using the Z argument without a value. This differs from the behavior of G425.
Report the current backlash configuration:
M425