Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r70d33c50c8c3fd987f39eaa1f3b294860d569830 -r2bdd010a62ea113058640fc1e9c763dcf885c93c --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 70d33c50c8c3fd987f39eaa1f3b294860d569830) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 2bdd010a62ea113058640fc1e9c763dcf885c93c) @@ -142,6 +142,11 @@ postState = handlePOSTStatus( testStatus ); break; + case POST_STATE_ALARM_LAMP: + testStatus = execAlarmLampTest(); + postState = handlePOSTStatus( testStatus ); + break; + case POST_STATE_ACCELEROMETER: #ifndef DISABLE_ACCELS testStatus = execAccelTest(); @@ -151,11 +156,6 @@ postState = handlePOSTStatus( testStatus ); break; - case POST_STATE_ALARM_LAMP: - testStatus = execAlarmLampTest(); - postState = handlePOSTStatus( testStatus ); - break; - // Should be last POST case POST_STATE_STUCK_BUTTON: testStatus = execStuckButtonTest();