When manually controlling the z-axis in reprap, it works fine. If I use the home button, it doesn't move. Instead, it stalls/freezes/hangs. It attempts to turn, but can't successfully make a full turn.
Asked
Active
Viewed 1,170 times
4
-
Hi and welcome to 3DP.SE! What is the status of the endstops? Could you send `M119` to the printer over USB using a terminal window like can be found in e.g. Pronterface software. Furthermore the question is very terse, please try to add more information and explain what you already tried to do to fix it. Please read [this](https://3dprinting.meta.stackexchange.com/questions/340/3d-printing-stack-exchange-question-checklist) to improve your question. – 0scar Sep 06 '18 at 06:29
-
An alternate software to Pronterface would be Repetier Host. Troubleshooting questions need a maximum of information available to be viable - the more information you can provide, the more likely we'll find a solution with you. – Trish Sep 06 '18 at 15:54
3 Answers
2
lower the moving speed of the Z-axis motor, search for
homing feed rate
in config.h as it looks like the given speed is to high.

profesor79
- 1,922
- 1
- 6
- 24
0
Looks like endstop signal for Z is inverted. In this case Z will move in manual mode but when homing it will try and stop as limit detected immediately. Change Z_MIN_ENDSTOP_INVERTING to opposite value.

Serge Rabyking
- 434
- 3
- 5
-
Triggered stops cause marlin to only allow the axis to move away from the stop during homing. If it is not moving at all, this couldn't be the cause. – silver Sep 17 '18 at 19:03
0
If you run M503 you should be able to see your max speeds. They, along with your homing speeds, are probably far too high and causing skipped steps (no movement). You can lower them down temporarily with M203. http://marlinfw.org/docs/gcode/M203.html

silver
- 229
- 1
- 3