-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
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 Z_RAISE_AFTER_PROBING for non DELTA printers #3057
Fix Z_RAISE_AFTER_PROBING for non DELTA printers #3057
Conversation
raise_z_after_probing() was only called if the printer type was set to a DELTA or if the printer had a docking sled for the probe.
This would rise twice for servo probes. |
Is it related with this ?
|
No. It's done much earlier in probe_pt() when called with |
You're correct. I did pass by it because I was assuming
So would it suffice to change the patch from:
To:
Or revert it and do something like:
Edit: Maybe |
twice for a servo based probe.
Ended up going with a third option which is a mix between the previous two, first check if the value of |
@jbrazio Do you mind making an equivalent patch for |
Fix Z_RAISE_AFTER_PROBING for non DELTA printers
No problem, I'll submit a PR to it. |
@thinkyhead I suggest for you to close #3034 |
@jbrazio Thanks! Done! |
Discussed at #3034:
Z_RAISE_AFTER_PROBING
value was being ignored by Marlin becauseraise_z_after_probing()
was only called if the printer type was set to aDELTA
or if the printer had a docking sled for the probe.