Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -r75e1ae332d1446dddf9b8d4ce6e8317449c57d67 -r11a16693e4b17efa6bea530b6c345c521119bdfb --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 75e1ae332d1446dddf9b8d4ce6e8317449c57d67) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 11a16693e4b17efa6bea530b6c345c521119bdfb) @@ -7,8 +7,8 @@ * * @file ModeInitPOST.c * -* @author (last) Dara Navaei -* @date (last) 18-Jan-2023 +* @author (last) Michael Garthwaite +* @date (last) 01-Mar-2023 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -309,12 +309,16 @@ break; case POST_STATE_COMPLETED: - // Set overall HD POST status to "passed" - postPassed = TRUE; + // Set overall HD POST completed status to TRUE postCompleted = TRUE; - // Broadcast final POST passed - sendPOSTFinalResult( TRUE ); + // Broadcast final POST passed once. We stay in this state for POST_COMPLETED_DELAY. + if ( FALSE == postPassed ) + { + sendPOSTFinalResult( TRUE ); + } + // Set overall HD POST status to "passed" + postPassed = TRUE; // Delay before going to standby mode if ( ++postCompleteDelayTimerCtr > POST_COMPLETED_DELAY ) {