Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Prusa-Error-Codes/yaml/buddy-error-codes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Errors:
printers: [MK4, COREONE, iX]
title: "STUCK FILAMENT DETECTED"
text: "The filament seems to be stuck, please unload it from nextruder and load it again."
action: [Unload]
action: [Unload, StopPrint]
id: "STUCK_FILAMENT_DETECTED"
gui_layout: "warning_dialog"
approved: true
Expand Down Expand Up @@ -98,7 +98,7 @@ Errors:
printers: [XL]
title: "STUCK FILAMENT DETECTED"
text: "The filament seems to be stuck, please unload it from nextruder and load it again."
action: [Unload]
action: [Unload, StopPrint]
gui_layout: "red_screen"
id: "STUCK_FILAMENT_DETECTED"
approved: true
Expand Down
2 changes: 2 additions & 0 deletions src/marlin_stubs/pause/pause.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,8 @@ void Pause::filament_stuck_ask_process(Response response) {

if (response == Response::Unload) {
set(LoadState::unload_wait_temp);
} else if (response == Response::Stop) {
settings.do_stop = true;
}
}
#endif
Expand Down