Index: firmware/App/Tasks/TaskTimer.c =================================================================== diff -u -rc67def50892f9a7c2f1f22985b5351465a8f6773 -r30f049651877229042e3f8700c8596e5b9a1e0f4 --- firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision c67def50892f9a7c2f1f22985b5351465a8f6773) +++ firmware/App/Tasks/TaskTimer.c (.../TaskTimer.c) (revision 30f049651877229042e3f8700c8596e5b9a1e0f4) @@ -37,18 +37,18 @@ void taskTimer( void ) { #ifdef TASK_TIMING_OUTPUT_ENABLED - // set GPIO high to indicate timer task has begun executing + // Set GPIO high to indicate timer task has begun executing setCPLDLampBlue( PIN_SIGNAL_HIGH ); #endif - // increment ms timer count + // Increment ms timer count incMSTimerCount(); - // check in with watchdog manager + // Check in with watchdog manager checkInWithWatchdogMgmt( TASK_TIMER ); #ifdef TASK_TIMING_OUTPUT_ENABLED - // set GPIO low to indicate timer task has finished executing + // Set GPIO low to indicate timer task has finished executing setCPLDLampBlue( PIN_SIGNAL_LOW ); #endif }