Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -rdf70610b0fd07ef4757da8ab504ecc856e178fe1 -ra8d919375cdb830f52e82e2d1c72c8153f5f58ca --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision df70610b0fd07ef4757da8ab504ecc856e178fe1) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision a8d919375cdb830f52e82e2d1c72c8153f5f58ca) @@ -51,13 +51,6 @@ static SELF_TEST_STATUS_T watchdogSelfTestStatus; ///< Watchdog self-test status. static U32 watchdogSelfTestTimerCount = 0; ///< Watchdog self-test timer count. - -// Temporary variables -const U32 arrayLen = 40; -U32 testIndex = 0; -U32 petTime [ arrayLen ]; -// Temporary variables - // ********** private function prototypes ********** static void resetWDTaskCheckIns( void ); @@ -110,17 +103,6 @@ // if all monitored tasks checked in, pet watchdog and clear the slate if ( ( TRUE == allTasksCheckedIn ) && ( didTimeout( lastWatchdogPetTime, MIN_WATCHDOG_PET_INTERVAL_MS ) ) ) { - // Test code TODO remove - petTime [ testIndex ] = calcTimeSince( lastWatchdogPetTime ); - - if ( testIndex == arrayLen - 1 ) - { - BOOL test = FALSE; - } - testIndex = INC_WRAP( testIndex, 0, arrayLen - 1 ); - - // Test code TODO remove - petWatchdog(); resetWDTaskCheckIns(); }