Index: firmware/App/Tasks/TaskGeneral.c =================================================================== diff -u -r37a9fd8f15e413db5337371a7d1a1cb65567af7c -r4e4ab946c0bc4b668cf5b197c7f841355814ccf5 --- firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 37a9fd8f15e413db5337371a7d1a1cb65567af7c) +++ firmware/App/Tasks/TaskGeneral.c (.../TaskGeneral.c) (revision 4e4ab946c0bc4b668cf5b197c7f841355814ccf5) @@ -34,7 +34,7 @@ #include "Temperatures.h" #include "Voltages.h" #include "WatchdogMgmt.h" - + /** * @addtogroup TaskGeneral * @{ @@ -52,7 +52,7 @@ * @return none *************************************************************************/ void taskGeneral( void ) -{ +{ #ifdef TASK_TIMING_OUTPUT_ENABLED // Set GPIO high to indicate general task has begun executing setCPLDLampGreen( PIN_SIGNAL_HIGH ); @@ -65,9 +65,7 @@ execSystemCommRx(); // Prevent most processing until UI has started communicating -#ifndef SIMULATE_UI if ( TRUE == uiCommunicated() ) -#endif { #ifndef BOARD_WITH_NO_HARDWARE // Monitor DG @@ -123,7 +121,7 @@ #ifdef TASK_TIMING_OUTPUT_ENABLED // Set GPIO low to indicate general task has finished executing setCPLDLampGreen( PIN_SIGNAL_LOW ); -#endif +#endif } /**@}*/