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

Delta: endstop Z_MIN, but only for probe.. possible? #3820

Closed
otvald opened this issue May 22, 2016 · 4 comments
Closed

Delta: endstop Z_MIN, but only for probe.. possible? #3820

otvald opened this issue May 22, 2016 · 4 comments

Comments

@otvald
Copy link
Contributor

otvald commented May 22, 2016

I use am using RC-branch, and have a delta printer with z-probe integrated with nozzle (Micromake).

I can do auto level, but when running, the Z_MIN can cause problems if triggered. This happens if I don't have a completely flat bed, and the nozzle hits the glass.

Is there a way to disable Z_MIN (and only use for probing)?

@Blue-Marlin
Copy link
Contributor

ENDSTOPS_ONLY_FOR_HOMING ?

@otvald
Copy link
Contributor Author

otvald commented May 22, 2016

#define ENDSTOPS_ONLY_FOR_HOMING

Is defined in Configuration_adv.h

I assume it should be enabled (i.e. not commented out), right? But when triggering z probe (Z_MIN) during printing, this affects the planner. (and caused not just bad height, but also offsets horizontaly)

@RicardoGA
Copy link
Contributor

RicardoGA commented May 22, 2016

Maybe this is issue is related with endstop.cpp with the line 42-44 (the states are inverted) @otvald could you try to change it from

Endstops::Endstops() {
  enable_globally(
    #if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
      true
    #else
      false
    #endif

To

Endstops::Endstops() {
  enable_globally(
    #if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
      false
    #else
      true
    #endif

And check if this fix your issue

@jbrazio jbrazio added the T: Question Questions, generally redirected to other groups. label May 23, 2016
@jbrazio jbrazio closed this as completed May 23, 2016
@jbrazio jbrazio added Bug: Confirmed ! and removed T: Question Questions, generally redirected to other groups. labels May 23, 2016
@jbrazio jbrazio added this to the 1.1.0 milestone May 23, 2016
@jbrazio jbrazio modified the milestone: 1.1.0 Jul 16, 2016
@github-actions
Copy link

github-actions bot commented Apr 6, 2022

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.

@github-actions github-actions bot locked and limited conversation to collaborators Apr 6, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants