@ZPomeroy said in MPCNC Endstop G28 Issue:
G1 H1 Z-125 F360 ; move Z down stopping at the endstopG90 ; absolute positioningG92 Z0 ; set Z position to axis minimum (you may want to adjust this)
In your homeall you're doing a homing move as if you have an endstop to home to, but you don't have a z endstop defined in config.g
How do you intend to home your Z axis?
Right now you have a manual probe defined, so it would prompt you to manually jog the axis to touch the Z0 point. To use that you would need to modify your homez and homeall and change these lines
G1 H1 Z-125 F360 ; move Z down stopping at the endstop
G90 ; absolute positioning
G92 Z0 ; set Z position to axis minimum (you may want to adjust this)
To simply G30 so that it would call the probe and prompt you to home Z manually.
@ZPomeroy said in MPCNC Endstop G28 Issue:
Sometimes the motors will skip and start making a horrible noise when the endstops should have been triggered.
Can you give me detail about this? Maybe a video showing what is happening?
Do it happen every time? Randomly? Does the axis move normally otherwise?