Add more error codes for the printer's perspective

pull/122/head
D.R.racer 2021-08-26 13:12:29 +02:00 committed by DRracer
parent 43c953b7f1
commit 8a5614844c
1 changed files with 4 additions and 1 deletions

View File

@ -28,7 +28,10 @@ enum class ErrorCode : uint_fast16_t {
INVALID_TOOL = 0x8006, ///< tool/slot index out of range (typically issuing T5 into an MMU with just 5 slots - valid range 0-4) INVALID_TOOL = 0x8006, ///< tool/slot index out of range (typically issuing T5 into an MMU with just 5 slots - valid range 0-4)
QUEUE_FULL = 0x802d, ///< internal logic error - attempt to move with a full queue QUEUE_FULL = 0x802b, ///< internal logic error - attempt to move with a full queue
VERSION_MISMATCH = 0x802c, ///< internal error of the printer - incompatible version of the MMU FW
PROTOCOL_ERROR = 0x802d, ///< internal error of the printer - communication with the MMU got garbled - protocol decoder couldn't decode the incoming messages
MMU_NOT_RESPONDING = 0x802e, ///< internal error of the printer - communication with the MMU is not working MMU_NOT_RESPONDING = 0x802e, ///< internal error of the printer - communication with the MMU is not working
INTERNAL = 0x802f, ///< internal runtime error (software) INTERNAL = 0x802f, ///< internal runtime error (software)