Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r38f6b0b6ff1608eb1fd046e91add7fd2c65de4b1 -r2bdd010a62ea113058640fc1e9c763dcf885c93c --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 38f6b0b6ff1608eb1fd046e91add7fd2c65de4b1) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 2bdd010a62ea113058640fc1e9c763dcf885c93c) @@ -137,15 +137,6 @@ postState = handlePOSTStatus( testStatus ); break; - case POST_STATE_ACCELEROMETER: -#ifndef DISABLE_ACCELS - testStatus = execAccelTest(); -#else - testStatus = SELF_TEST_STATUS_PASSED; -#endif - postState = handlePOSTStatus( testStatus ); - break; - case POST_STATE_VALVES: testStatus = execValvesSelfTest(); postState = handlePOSTStatus( testStatus ); @@ -156,6 +147,15 @@ postState = handlePOSTStatus( testStatus ); break; + case POST_STATE_ACCELEROMETER: +#ifndef DISABLE_ACCELS + testStatus = execAccelTest(); +#else + testStatus = SELF_TEST_STATUS_PASSED; +#endif + postState = handlePOSTStatus( testStatus ); + break; + // Should be last POST case POST_STATE_STUCK_BUTTON: testStatus = execStuckButtonTest();