Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -r9bb4c963e60cef18d211e286ff2276c4471a122e -r417631131615f93f77d6d1bfe44c385a8eab6d5b --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 9bb4c963e60cef18d211e286ff2276c4471a122e) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 417631131615f93f77d6d1bfe44c385a8eab6d5b) @@ -7,8 +7,8 @@ * * @file WatchdogMgmt.c * -* @author (last) Dara Navaei -* @date (last) 17-Jan-2023 +* @author (last) Bill Bracken +* @date (last) 14-Mar-2023 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 @@ -116,12 +116,14 @@ if ( PIN_SIGNAL_LOW == getCPLDWatchdogExpired() ) { // ignore expired watchdog until after watchdog POST - if ( ( WATCHDOG_SELF_TEST_STATE_COMPLETE == watchdogSelfTestState ) || - ( getCurrentOperationMode() != DG_MODE_INIT ) ) - { -#ifndef DEBUG_ENABLED + if ( getCurrentOperationMode() != DG_MODE_INIT ) + { + /* DEBUG WARNING + * It may be necessary to comment out the following + * line to prevent the alarm from occurring while + * debugging. + */ activateAlarmNoData( ALARM_ID_DG_WATCHDOG_EXPIRED ); -#endif } } }