Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -rce3e0696642099164fa482c864509c67ce65579b -rac05209d7b6c65b22359754eced5ad2672d3092a --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision ce3e0696642099164fa482c864509c67ce65579b) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision ac05209d7b6c65b22359754eced5ad2672d3092a) @@ -107,13 +107,8 @@ petWatchdog(); resetWDTaskCheckIns(); } -#ifndef RM46_EVAL_BOARD_TARGET // check to see if watchdog has expired -#ifndef BREADBOARD_TARGET if ( getCPLDWatchdogExpired() == PIN_SIGNAL_LOW ) -#else - if ( getCPLDWatchdogExpired() == PIN_SIGNAL_HIGH ) -#endif { // ignore expired watchdog until after watchdog POST if ( WATCHDOG_SELF_TEST_STATE_COMPLETE == watchdogSelfTestState ) @@ -123,7 +118,6 @@ #endif } } -#endif } @@ -291,10 +285,8 @@ *************************************************************************/ static void petWatchdog( void ) { -#ifndef RM46_EVAL_BOARD_TARGET // pulse the watchdog signal toggleCPLDWatchdog(); -#endif // remember when we last pet the watchdog lastWatchdogPetTime = getMSTimerCount();