I am running into trouble with my z-probe offset. I have my config.g as follows:
; Printer Settings
M669 K4 P376 D376 A-137:110 B0:172 C-1:0:0 X0 Y0 W2 E-180:180 ; Printer class SCARA, proximal/distal length, proximal min/max angle in relation to x-axis, distal min/max angle in relation to proximal arm, crosstalk factor (depends on mechanical setup)
M584 X0 Y1 Z2 W3 E4
M208 X-752:752 Y-752:752 Z0:1270 W-360:360 ; Set min/max positions for each axis
M201 X400 Y400 Z200 E600 ; Accelerations (mm/s^2)
M203 X6000 Y6000 Z400 E3600 ; Maximum speeds (mm/min)
M566 X300 Y300 Z20 E400 ; Maximum instant speed changes mm/minute
;Motor Settings
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S0 ; Drive 1 goes backwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S0 ; Drive 3 goes backwards
M569 P4 S1 ; Drive 4 goes forwards
M350 X16 Y16 Z16 E16:16 W16 I1 ; Set 16x microstepping with interpolation
M92 X262.2222 Y262.2222 Z800 E700 W65.55555 ; Set axis steps/degree, steps/mm
M906 X1000 Y1000 Z1000 E400 W500 I60 ; Set motor currents (mA) and increase idle current to 60%
;Endstops
M574 X1 S1 P"!xstop" ; X min active low endstop switch
M574 Y1 S1 P"!ystop" ; Y min active low endstop switch
M574 Z1 S2 ; configure Z-probe endstop for low end on Z
;Z-Probe
M574 Z0 P"nil" ; no Z endstop switch, free up Z endstop input
M558 P1 C"zprobe.in" H18 F200 R.5 T3600 # Z-Probe connected to Z-endstop input
G31 P500 Z2.41
;Mesh Bed Compensation
M557 X150:600 Y-450:450 S50 ; probe from X=10 to 190, Y=10 to 190mm with a mesh spacing of 20mm
;Tool Definition
M308 S1 P"e0temp" Y"thermistor" T110000 B4095 H127
M950 H1 C"e0heat" T1
M950 F0 C"fan0"
M563 P0 S"Hotend" D0 H1 F0
M140 H0
G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C
When I run the G30 command to home the z-axis, it does so but instead of using the 2.41mm as I found while manually calibrating it. It sets the z-height to be 18.70, meaning it's using a z-probe offset of .7mm instead of the 2.41 as I've set. This is in RRF 3.2 so I don't know if there are any differences/something wrong.