Skip to content
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

Fix motion over soft. endstop after M84 #20264 #20283

Merged
merged 5 commits into from
Nov 27, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -1544,6 +1544,15 @@ static_assert(hbm[Z_AXIS] >= 0, "HOMING_BUMP_MM.Z must be greater than or equal
#endif
#endif

/**
* Make sure NO_MOTION_BEFORE_HOMING if NO_MOTION_BEFORE_HOMING enabled
Sergey1560 marked this conversation as resolved.
Show resolved Hide resolved
*/

#if ENABLED(HOME_AFTER_DEACTIVATE) && DISABLED(NO_MOTION_BEFORE_HOMING)
#error "NO_MOTION_BEFORE_HOMING must be enabled for HOME_AFTER_DEACTIVATE"
#endif


/**
* Filament Width Sensor
*/
Expand Down