@justGuner said in G32 causes printhead to go beyond limits:
However, I keep on getting the following error:
Error: Some computed corrections exceed configured limit of 1.00mm: 2.404 -2.621
That's coming from your M671 command in config.g, which defines the leadscrew positions:
... M671 X-22:287 Y163:163 ...See https://docs.duet3d.com/User_manual/Reference/Gcodes#m671-define-positions-of-z-pivot-points-or-bed-levelling-screws
You have omitted the S parameter, so it is defaulting to 1mm. If the levelling is likely to move, it's worth making the first probe have a wider limit eg M671 ... S5, with more probe lift (M558 H parameter).
Ian