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.
#27539 Breaks the filament status message, the text "filament" is missing:
Reporting endstop status x_min: open y_min: open z_probe: TRIGGERED : TRIGGERED
endstops.cpp
OLD: print_es_state(READ(FIL_RUNOUT1_PIN) != FIL_RUNOUT1_STATE, F(STR_FILAMENT)); NEW: print_es_state(!FILAMENT_IS_OUT());
SHOULD BE: print_es_state(!FILAMENT_IS_OUT(), F(STR_FILAMENT));
#27539
Filament reported as before
"filament" text is missing from M119 report
Run M119
Latest bugfix with #27539
No response
Custom
None
Configuration.h
Configuration_adv.h
Not relevant but here it is: Configuration_adv.zip
The text was updated successfully, but these errors were encountered:
Fix M119
a5ef118
Fix from MarlinFirmware#27576
Successfully merging a pull request may close this issue.
Did you test the latest
bugfix-2.1.x
code?Yes, and the problem still exists.
Bug Description
#27539 Breaks the filament status message, the text "filament" is missing:
endstops.cpp
OLD: print_es_state(READ(FIL_RUNOUT1_PIN) != FIL_RUNOUT1_STATE, F(STR_FILAMENT));
NEW: print_es_state(!FILAMENT_IS_OUT());
SHOULD BE: print_es_state(!FILAMENT_IS_OUT(), F(STR_FILAMENT));
Bug Timeline
#27539
Expected behavior
Filament reported as before
Actual behavior
"filament" text is missing from M119 report
Steps to Reproduce
Run M119
Version of Marlin Firmware
Latest bugfix with #27539
Printer model
No response
Electronics
Custom
LCD/Controller
No response
Other add-ons
No response
Bed Leveling
None
Your Slicer
None
Host Software
None
Don't forget to include
Configuration.h
andConfiguration_adv.h
.Additional information & file uploads
Not relevant but here it is:
Configuration_adv.zip
The text was updated successfully, but these errors were encountered: