makerbase-mks/SGEN_L

TMC2208_STANDALONE homing don't work

fabien85100 opened this issue · 1 comments

Hi !
I can control my axes but when i'm asking for a homing (G28) they move about 1 cm and stop.
Here the answer of my terminal :
Send: G28
Recv: X:0.00 Y:0.00 Z:0.00 E:0.00 Count X:0 Y:0 Z:0
Recv: ok

and in marlin i've written in configuration.h :

863 #define X_DRIVER_TYPE TMC2208_STANDALONE
864 #define Y_DRIVER_TYPE TMC2208_STANDALONE
865 #define Z_DRIVER_TYPE TMC2208_STANDALONE

Don't know what to do ...

I've find my mistake !!

false to true:
#define X_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.
#define Y_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.
#define Z_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.

Resolved !