Index: firmware/App/Modes/ModeInitPOST.c =================================================================== diff -u -rcfc1f883bcc3e28bf108439fffdcddbabe2ef3ae -r77392c1537f02650413087b86b946370a6289dcd --- firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision cfc1f883bcc3e28bf108439fffdcddbabe2ef3ae) +++ firmware/App/Modes/ModeInitPOST.c (.../ModeInitPOST.c) (revision 77392c1537f02650413087b86b946370a6289dcd) @@ -7,8 +7,8 @@ * * @file ModeInitPOST.c * -* @author (last) Sean Nash -* @date (last) 02-Feb-2023 +* @author (last) Michael Garthwaite +* @date (last) 01-Mar-2023 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -310,12 +310,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 ) {