-
Notifications
You must be signed in to change notification settings - Fork 76
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
Thermal runaway protection? #204
Comments
grep for "HEATER_FAIL_". There are some basic sanity checks in place which you can test by, for instance, disconnecting the thermistor from your Hotend and turning on the heater cartridge. I don't know how exhaustive the checks are, but basic heater / thermistor failure seems to be caught. EDIT: See also #172, so while the thermal runaway protection will prevent your house from burning down, it won't protect your hardware from destroying itself :\ |
It only needs to add An abort print on the thermal shutdown case |
I had the same question for my device with sailfish. So I checked the program code. enum HeaterFailMode{ This is what is the interesting part: HEATER_FAIL_NOT_HEATING = 0x08, Furthermore in the Heater.cc:
This seems to do exactly this check, what you mean with thermal runaway. In my opinion, this can be closed. |
What they mean is that even if that code is run, it doesn't prevent the printer from continuing the print, even if the heater is shut down, this can cause some hardware damage, as the filament is continuosly pushed in. My code option was already done in my fork, as this tree is INACTIVE and abandoned. |
Ahh ok, I see. |
As this has been in various printing news recently, it would be nice to have this in the firmware. I didn't find anything with a quick search for runaway in the GitHub project, but it's possible I missed it.
I'd hope that at least the algorithm could be ported from Marlin since that seems to be the standard.
The text was updated successfully, but these errors were encountered: