Index: firmware/App/Tasks/TaskPriority.c =================================================================== diff -u -r1a685471524555a374854c0c9ec8e208e71fe2df -r30f049651877229042e3f8700c8596e5b9a1e0f4 --- firmware/App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision 1a685471524555a374854c0c9ec8e208e71fe2df) +++ firmware/App/Tasks/TaskPriority.c (.../TaskPriority.c) (revision 30f049651877229042e3f8700c8596e5b9a1e0f4) @@ -45,11 +45,11 @@ void taskPriority( void ) { #ifdef TASK_TIMING_OUTPUT_ENABLED - // set GPIO high to indicate priority task has begun executing + // Set GPIO high to indicate priority task has begun executing setCPLDLampRed( PIN_SIGNAL_HIGH ); #endif - // prevent most processing until UI has started communicating + // Prevent most processing until UI has started communicating #ifndef SIMULATE_UI if ( TRUE == uiCommunicated() ) #endif @@ -58,26 +58,26 @@ execFPGAIn(); #ifndef CAN_TEST - // monitor and process buttons + // Monitor and process buttons execButtons(); - // monitor internal ADC channels + // Monitor internal ADC channels execInternalADC(); - // monitor air trap level sensors + // Monitor air trap level sensors execAirTrapMonitor(); - // monitor blood pump and flow + // Monitor blood pump and flow execBloodFlowMonitor(); - // monitor dialysate inlet pump and flow + // Monitor dialysate inlet pump and flow execDialInFlowMonitor(); - // monitor dialysate outlet pump and load cells + // Monitor dialysate outlet pump and load cells execDialOutFlowMonitor(); #ifndef DISABLE_ACCELS - // monitor accelerometer + // Monitor accelerometer execAccel(); #endif #ifndef DISABLE_3WAY_VALVES @@ -89,11 +89,11 @@ execFPGAOut(); } - // check in with watchdog manager + // Check in with watchdog manager checkInWithWatchdogMgmt( TASK_PRIORITY ); #ifdef TASK_TIMING_OUTPUT_ENABLED - // set GPIO low to indicate priority task has finished executing + // Set GPIO low to indicate priority task has finished executing setCPLDLampRed( PIN_SIGNAL_LOW ); #endif }