Index: App/Tasks/TaskGeneral.c =================================================================== diff -u -radd7eb956a7d2c124434541e1f06ca5ae158716f -r879f01d26ef663cceccf14963c09f53e72c13cec --- App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision add7eb956a7d2c124434541e1f06ca5ae158716f) +++ App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 879f01d26ef663cceccf14963c09f53e72c13cec) @@ -22,10 +22,6 @@ #include "WatchdogMgmt.h" #include "TaskGeneral.h" -// private data - -static int ledCounter = 0; - /************************************************************************* * @brief taskGeneral * The taskGeneral function handles the scheduled General Task interrupt.\n @@ -49,14 +45,6 @@ checkInWithWatchdogMgmt( TASK_GENERAL ); // toggle GPIO to indicate general task has executed - gioToggleBit( gioPORTA, 0 ); - ledCounter++; - - // Temporary LED blinking for now - TODO: Remove this -// if ( ledCounter >= 10 ) -// { -// ledCounter = 0; -// gioToggleBit( gioPORTB, 1 ); -// } +// gioToggleBit( gioPORTB, 1 ); }