New issue after upgrading firmware to 3.4.1
-
Historically at the end of each print the extruder and bed heaters were automatically switch off. After upgrading to 3.4.1 I noticed that when a print finished the extruder and bed heaters remained active.
Previously my ending script finished with "M0" now that has no discernable effect. I tried replacing with "M104 S0" and "M140 S0" but they had no effect either.
I must be doing something incorrectly, any advice will be much appreciated. -
@bramerrf Put them in stop.g, which is called by M0.
For example, I use this in stop.g
; stop.g ; called when M0 (Stop) is run (e.g. when a print from SD card is cancelled) M591 D0 S0 ; turn off filament monitor M98 P"/macros/EnableHoming" M568 P0 A0 ; turn off hotend M140 H0 S-274 ; turn off bed M107 ; turn off parts fan G90 ; absolute positioning M84 ; turn off motors
-
@bramerrf if you have a stop.g file then with RRF 3.4.0 and later you need to turn those heaters off explicitly in that file.
-
@stephen6309 said in New issue after upgrading firmware to 3.4.1:
M591 D0 S0 ; turn off filament monitor
Thanks for all the replies.
I will try to put everything I want into stop.g and see how few mistakes I make.
Thanks again.