Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -red4265fbaf50eefd9c7243fb1fc8ee7db0296746 -rd56204c50d4ff6884e30c84435fe9ce11dbc236e --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision ed4265fbaf50eefd9c7243fb1fc8ee7db0296746) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision d56204c50d4ff6884e30c84435fe9ce11dbc236e) @@ -8,7 +8,7 @@ * @file ModeInitPOST.c * * @author (last) Dara Navaei -* @date (last) 03-Apr-2022 +* @date (last) 13-Jul-2022 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -156,14 +156,6 @@ postState = handlePOSTStatus( testStatus ); break; - case POST_STATE_AC: - if ( getMonitoredLineLevel( MONITORED_LINE_24V ) < MIN_24V_MEASURED_FOR_AC ) - { - initiatePowerOff(); - } - postState = POST_STATE_WATCHDOG; - break; - case POST_STATE_WATCHDOG: testStatus = execWatchdogTest(); postState = handlePOSTStatus( testStatus ); @@ -532,7 +524,6 @@ *************************************************************************/ static SELF_TEST_STATUS_T execUITest( void ) { - #ifndef DISABLE_UI_POST_TEST SELF_TEST_STATUS_T result = SELF_TEST_STATUS_IN_PROGRESS; @@ -560,7 +551,6 @@ #endif return result; - } /**@}*/