Index: firmware/App/Tasks/TaskTimer.c =================================================================== diff -u -ra7bf3ca23ea37a61000379facae628a31b3ecc59 -rd4481dd44bcc98172e785f812aa0c543c5385252 --- firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision a7bf3ca23ea37a61000379facae628a31b3ecc59) +++ firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision d4481dd44bcc98172e785f812aa0c543c5385252) @@ -32,14 +32,17 @@ *************************************************************************/ void taskTimer( void ) { +#ifdef TASK_TIMING_OUTPUT_ENABLED + // SET_TASK_ON(); // TODO - uncomment and define TASK_TIMING_OUTPUT_ENABLED to monitor this tasks timing +#endif + // increment ms timer count incMSTimerCount(); // check in with watchdog manager checkInWithWatchdogMgmt( TASK_TIMER ); - // toggle GPIO to indicate timer task has executed - //gioToggleBit( gioPORTB, 0 ); +#ifdef TASK_TIMING_OUTPUT_ENABLED + // SET_TASK_OFF(); // TODO - uncomment and define TASK_TIMING_OUTPUT_ENABLED to monitor this tasks timing +#endif } - -