@@ -44,15 +44,14 @@ class SaboCoverUIController {
4444 BootStepState state = BootStepState::WAIT;
4545 systime_t last_action_time = 0 ;
4646 };
47- static constexpr size_t BOOT_STEP_COUNT_ = 7 ;
47+ static constexpr size_t BOOT_STEP_COUNT_ = 6 ;
4848 etl::array<SaboCoverUIController::BootStep, BOOT_STEP_COUNT_> boot_steps_ = {{
4949 {" Motion Sensor" , &TestIMU},
5050 {" Charger" , &TestCharger},
5151 {" GPS" , &TestGPS},
5252 {" Left Motor" , &TestLeftESC},
5353 {" Right Motor" , &TestRightESC},
5454 {" Mower Motor" , &TestMowerESC},
55- {" Flux Compensator" , &TestFluxCompensator},
5655 }};
5756 size_t current_boot_step_ = 0 ;
5857 static constexpr size_t BOOT_STEP_RETRIES = 3 ;
@@ -66,9 +65,6 @@ class SaboCoverUIController {
6665 static bool TestLeftESC ();
6766 static bool TestRightESC ();
6867 static bool TestMowerESC ();
69- static bool TestFluxCompensator () {
70- return false ; // Placeholder for a non-existent service
71- }
7268
7369 static void ThreadHelper (void * instance);
7470 void ThreadFunc ();
0 commit comments