@dc42 I tried reducing the "special moves" acceleration with M201.1
.
I finally managed to set up sensorless homing, but it's still not very stable. I believe the issue is more related to the configuration than the threshold value.
Occasionally, a stall is detected at the start of the first homing motion but never again. Restarting the mainboard sometimes resolves the issue, but it tends to reappear after 2-3 reboots.
I ended up with with this homing file (axis is C
) :
M400
M574 C1 S3 ; setup sensorless endstop
M915 C R0 S40 ; set sensitivity
M569 P22.0 V11 ; increase TPWMTHRS
M913 C30 ; reduce current to 30%
M400
G4 P500 ; wait 500ms - don't know if usefull
G91
G1 H1 C-75 F120
G1 C0.5 F600
G90
M400
M569 P22.0 V117 ; restore TPWMTHRS
M574 C0 ; remove endstop
M913 C100 ; reset current to 100%
M400
As you can see I'm creating and deleting the endstop every time. I don't know why, but it's the most stable configuration I could find.