Reallocate MCU_UNDERVOLTAGE_VCC error code value

pull/265/head
D.R.racer 2023-03-08 12:07:23 +01:00
parent 029e0ecfc0
commit c200b0286e
1 changed files with 2 additions and 3 deletions

View File

@ -56,6 +56,8 @@ enum class ErrorCode : uint_fast16_t {
FILAMENT_EJECTED = 0x800c, ///< Filament was ejected, waiting for user input - technically, this is not an error
MCU_UNDERVOLTAGE_VCC = 0x800d, ///< MCU VCC rail undervoltage.
LOAD_TO_EXTRUDER_FAILED = 0x802a, ///< E32811 internal error of the printer - try-load-unload sequence detected missing filament -> failed load into the nozzle
QUEUE_FULL = 0x802b, ///< E32811 internal logic error - attempt to move with a full queue
VERSION_MISMATCH = 0x802c, ///< E32812 internal error of the printer - incompatible version of the MMU FW
@ -117,7 +119,4 @@ enum class ErrorCode : uint_fast16_t {
/// issues or hardware fault. Possible "fixable" cause is undervoltage on the 5v logic line.
/// Unfixable possible cause: bad or cracked solder joints on the PCB, failed shift register, failed driver.
MMU_SOLDERING_NEEDS_ATTENTION = 0xC200,
/// MCU VCC rail undervoltage.
MCU_UNDERVOLTAGE_VCC = 0xC400,
};