-
-
Notifications
You must be signed in to change notification settings - Fork 19.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Software endstop fails after M84 #20264
Comments
Well after thinking a bit more about the issue and the pull request, I must say that this is not a bug and the behaviour is absolutely okey. We may just need to have a note, that HOME_AFTER_DEACTIVATE does not prevent movement! NO_MOTION_BEFORE_HOMING: prevents moving if axes not homed, thats the case! If you want to prevent movement after steppers have been disabled, you need to enable both of them. |
The problem is not that the movement is not prohibited, but that the software endstops are not taken into account. In case of errors in the gcode, this can lead to damage. |
I know, I know... |
Fixed by #20283 |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
With the HOME_AFTER_DEACTIVATE option enabled, software endstops do not work when moving off the bed after M84. For example maximum for Y-axis is 200.
This is because in the Marlin/src/module/motion.cpp file, "apply_motion_limits" function check limits only if the axis is homed.
Expected behavior:
Do not move without homing when the option HOME_AFTER_DEACTIVATE is enabled or take into account in some way software endstop.
I checked the behavior on the latest bugfix branch, the problem persists.
Configuration.zip
The text was updated successfully, but these errors were encountered: