Rename error: Load to Extruder Failed
as per request from the Content team
This commit is contained in:
parent
0a3517e8b2
commit
a30ea1c5ab
|
|
@ -309,7 +309,7 @@ void MMU2::ToolChangeCommon(uint8_t slot){
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
// failed autoretry, report an error by forcing a "printer" error into the MMU infrastructure - it is a hack to leverage existing code
|
// failed autoretry, report an error by forcing a "printer" error into the MMU infrastructure - it is a hack to leverage existing code
|
||||||
logic.SetPrinterError(ErrorCode::TRY_LOAD_UNLOAD_FAILED);
|
logic.SetPrinterError(ErrorCode::LOAD_TO_EXTRUDER_FAILED);
|
||||||
SaveAndPark(true);
|
SaveAndPark(true);
|
||||||
SaveHotendTemp(true);
|
SaveHotendTemp(true);
|
||||||
// We only have to wait for the user to fix the issue and press "Retry".
|
// We only have to wait for the user to fix the issue and press "Retry".
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ enum class ErrorCode : uint_fast16_t {
|
||||||
|
|
||||||
QUEUE_FULL = 0x802b, ///< E32811 internal logic error - attempt to move with a full queue
|
QUEUE_FULL = 0x802b, ///< E32811 internal logic error - attempt to move with a full queue
|
||||||
|
|
||||||
TRY_LOAD_UNLOAD_FAILED = 0x802b, ///< E32811 internal error of the printer - try-load-unload sequence detected missing filament -> failed load into the nozzle
|
LOAD_TO_EXTRUDER_FAILED = 0x802b, ///< E32811 internal error of the printer - try-load-unload sequence detected missing filament -> failed load into the nozzle
|
||||||
VERSION_MISMATCH = 0x802c, ///< E32812 internal error of the printer - incompatible version of the MMU FW
|
VERSION_MISMATCH = 0x802c, ///< E32812 internal error of the printer - incompatible version of the MMU FW
|
||||||
PROTOCOL_ERROR = 0x802d, ///< E32813 internal error of the printer - communication with the MMU got garbled - protocol decoder couldn't decode the incoming messages
|
PROTOCOL_ERROR = 0x802d, ///< E32813 internal error of the printer - communication with the MMU got garbled - protocol decoder couldn't decode the incoming messages
|
||||||
MMU_NOT_RESPONDING = 0x802e, ///< E32814 internal error of the printer - communication with the MMU is not working
|
MMU_NOT_RESPONDING = 0x802e, ///< E32814 internal error of the printer - communication with the MMU is not working
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue