Hi,
I can't seem to figure out how to get the machine to run a multi-point manual mesh leveling like you can do with marlin.
Whatever I do it always seems to run automatically and either crashes the head, or just pretends it has been triggered.
This is my bed.g code…
[c]; bed.g
; called to perform automatic bed compensation via G32
;
; generated by RepRapFirmware Configuration Tool on Fri May 12 2017 11:12:14 GMT+0100 (GMT Daylight Time)
; Clear any bed transform
M561
; Home all axes
G28
; Probe the bed at 5 points
G30 P0 X25 Y25 H0 Z-99999
G30 P1 X25 Y265 H0 Z-99999
G30 P2 X175 Y265 H0 Z-99999
G30 P3 X175 Y25 H0 Z-99999
G30 P4 X100 Y100 H0 Z-99999 S[/c]
extract from config.g
[c]; Endstops
M574 X2 Y2 Z2 S1 ; Define active high microswitches
M558 P0 X0 Y0 Z0.5 H5 F120 T5000 ;
G31 P600 X0 Y0 Z186 ; Set Z probe trigger value, offset and trigger height
; Mesh Leveling Grid
M557 X25:175 Y25:265 S30
[/c]
All axis home to their MAX value. There is no probe on the hotend and only an endstop on Z+. From my understanding of things I should be able to manually jog the bed up and down to get the right numbers at each of the points. What am I missing?