Try this
G91 ; relative mode G1 H2 Z10 F200 ; raise head to avoid dragging nozzle over the bed G1 H1 X-350 F3000 ; move up to 240mm in the -X direction, stopping if the homing switch is triggered G1 X4 F600 ; move slowly 4mm in the +X direction G1 H1 X-10 ; move slowly 10mm in the -X direction, stopping at the homing switch G1 H1 Y300 F3000 ; move up to 240mm in the Y direction, stopping if the homing switch is triggered G1 Y-4 F600 ; move slowly 4mm in the -Y direction G1 H1 Y10 ; move slowly 10mm in the Y direction, stopping at the homing switch ;G1 Z-300 F3000 S1 ; move up to 240mm in the -Z direction, stopping if the homing switch is triggered ;G1 Z4 F600 ; move slowly 4mm in the +Z direction ;G1 Z-10 S1 ; move slowly 10mm in the -Z direction, stopping at the homing switch G90 ; back to absolute mode G1 X20 Y180 F3600 ; Move to position on glass. G4 P1000 ; Wait one second to let probe clear. ; G30 ; Home Z with probe ; G1 Z10 F3600 G1 X150 Y100 ; center M280 P3 S90 I1 ; reset probe G30 G90 ; absolute positioning G1 Z20 F4000 M280 P3 S90 I1 ; reset probe@Coded-Games said in G29 does not deploy BL Touch (Duet Wifi 1.02):
M584 X1 Y0
YOu'll need to finish defining all of the drivers in M584, and the M584 command needs to be moved higher up in the file. Like right above the M350 command.
@Coded-Games said in G29 does not deploy BL Touch (Duet Wifi 1.02):
M574 X1 Y2 Z1 S1 ; set homing switch configuration
This command is no longer valid in RRF3.
See here: https://docs.duet3d.com/User_manual/Reference/Gcodes#m574-set-endstop-configuration
You may want to generate a new config file set using the online config tool to see what a modern config set looks like for comparison.