-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
[BUG] Emergency Commands don't work in an Emergency #717
Comments
There were some changes to EMERGENCY_PARSER settings because of issue #695 raised by @thisiskeithb. |
Edit: I spoke too soon. |
@thisiskeithb the following boards use
It is only the mini boards that still use |
Earlier a message was displayed on screen that emergency gcodes will not work if marlin did not have emergency_parser enabled but now BTT has removed it. |
The error message was removed from BigTreeTech's firmware, but with MarlinFirmware/Marlin#19279 and MarlinFirmware/Marlin#19281, |
Has this issue actually been solved or was the issue just closed? |
See my last comment. |
This issue was never about what Marlin supports, this issue was about what the screen firmware supports. I've tried this with a Marlin that supports emergency parsing, but that is useless if the LCD cannot send emergency commands because it is waiting for an |
@rudihorn that issue is also solved now. |
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. |
Description
TFT firmware is unable to send emergency parser codes.
Steps to reproduce
M109 S180
from an external program. Note that you cannot send it from the TFT, as the TFT changesM109
intoM104
.M105
to update temperature.M108
g code.Expected behavior
If you skip step 3. by quickly sending the gcode then it sends the emergency code and it works.
Actual behavior
The TFT waits for an
ok
response.Hardware Variant
TFT 35 V2.0
TFT Firmware Version & Main Board Firmware details
SKR Pro V1.1 with MarlinFirmware/Marlin#18095
TFT Firmware version V2.0.26.1
Additional Information
This is related to #518. Using
M105
instead ofM155
is just bad, especially with the synchronous command queue nature that the TFT uses. Marlin describes this approach asless than optimal
and recommends usingM155
which is possible.I'm also not a fan of the silent changing of
M109
toM104
.The text was updated successfully, but these errors were encountered: