From 09c5f7df56c966263ef0b114f680b2f8574a6455 Mon Sep 17 00:00:00 2001 From: "D.R.racer" Date: Wed, 12 Apr 2023 08:24:37 +0200 Subject: [PATCH] Reorder progress states to allow MK3 optimization HW test states are ignored to save space on MK3 --- src/logic/progress_codes.h | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/logic/progress_codes.h b/src/logic/progress_codes.h index d535cbf..a4a922f 100644 --- a/src/logic/progress_codes.h +++ b/src/logic/progress_codes.h @@ -35,22 +35,19 @@ enum class ProgressCode : uint_fast8_t { ParkingSelector, // P23 EjectingFilament, // P24 RetractingFromFinda, // P25 - Homing, // P26 MovingSelector, // P27 - FeedingToFSensor, // P28 + UnloadingFilamentSlowly, // P29 - HWTestBegin, // P29 - HWTestIdler, // P30 - HWTestSelector, // P31 - HWTestPulley, // P32 - HWTestCleanup, // P33 - HWTestExec, // P34 - HWTestDisplay, // P35 - ErrHwTestFailed, // P36 - - UnloadingFilamentSlowly, // P37 + HWTestBegin, // P31 + HWTestIdler, // P31 + HWTestSelector, // P32 + HWTestPulley, // P33 + HWTestCleanup, // P34 + HWTestExec, // P35 + HWTestDisplay, // P36 + ErrHwTestFailed, // P37 Empty = 0xff // dummy empty state };