mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-26 05:17:17 +00:00
sv06p - fix stuck filament runout
This commit is contained in:
parent
12b47b1b0a
commit
749c59aa67
@ -1365,7 +1365,7 @@ void RTS::handleData() {
|
||||
#if HAS_FILAMENT_SENSOR
|
||||
case FilamentChange: // Automatic material
|
||||
switch (recdat.data[0]) {
|
||||
case 1: if (runout.filament_ran_out) break;
|
||||
case 1: if (READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_STATE) break;
|
||||
case 2:
|
||||
updateTempE0();
|
||||
wait_for_heatup = wait_for_user = false;
|
||||
|
Loading…
Reference in New Issue
Block a user