We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
bugfix-2.1.x
Yes, and the problem still exists.
Freeze feature should halt all stepper motion when freeze pin is triggered. It worked fine in the previous version I had (2.0.9.3).
Updating from 2.0.9.3 to 2.1.1
When freeze pin receives LOW input (Z endstop switch is closed) all stepper movements should stop.
All stepper movements continue to work as if freeze pin never changed state.
No response
2.1.1
Anet A8
BTT SKR V1.4 Turbo
OctoPrint
Configuration.h
Configuration_adv.h
Problem was solved by changing:
#if HAS_FREEZE_PIN stepper.frozen = READ(FREEZE_PIN) == FREEZE_STATE; #endif
to
#if ENABLED(FREEZE_FEATURE) stepper.frozen = READ(FREEZE_PIN) == FREEZE_STATE; #endif
in MarlinCore.cpp line 491. I assume it was forgotten when "HAS_FREEZE_PIN" was removed
Attached is my config config.zip
The text was updated successfully, but these errors were encountered:
Thanks for the report! This will be fixed in #24664
Sorry, something went wrong.
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.
No branches or pull requests
Did you test the latest
bugfix-2.1.x
code?Yes, and the problem still exists.
Bug Description
Freeze feature should halt all stepper motion when freeze pin is triggered. It worked fine in the previous version I had (2.0.9.3).
Bug Timeline
Updating from 2.0.9.3 to 2.1.1
Expected behavior
When freeze pin receives LOW input (Z endstop switch is closed) all stepper movements should stop.
Actual behavior
All stepper movements continue to work as if freeze pin never changed state.
Steps to Reproduce
No response
Version of Marlin Firmware
2.1.1
Printer model
Anet A8
Electronics
BTT SKR V1.4 Turbo
Add-ons
No response
Bed Leveling
No response
Your Slicer
No response
Host Software
OctoPrint
Don't forget to include
Configuration.h
andConfiguration_adv.h
.Additional information & file uploads
Problem was solved by changing:
to
in MarlinCore.cpp line 491. I assume it was forgotten when "HAS_FREEZE_PIN" was removed
Attached is my config
config.zip
The text was updated successfully, but these errors were encountered: