|
|
|
@ -112,12 +112,6 @@ static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION;
|
|
|
|
|
*/
|
|
|
|
|
static void prvTimerTask( void *pvParameters ) PRIVILEGED_FUNCTION;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The following functions handle the commands that are sent to the timer
|
|
|
|
|
* service task via the xTimerQueue queue.
|
|
|
|
|
*/
|
|
|
|
|
static void prvTimerStart( xTIMER *pxTimer ) PRIVILEGED_FUNCTION;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Called by the timer service task to interpret and process a command it
|
|
|
|
|
* received on the timer queue.
|
|
|
|
@ -138,7 +132,7 @@ portBASE_TYPE xReturn = pdFAIL;
|
|
|
|
|
|
|
|
|
|
if( xTimerQueue != NULL )
|
|
|
|
|
{
|
|
|
|
|
xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Timers", configTIMER_TASK_STACK_DEPTH, NULL, configTIMER_TASK_PRIORITY, NULL );
|
|
|
|
|
xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Timer Service", configTIMER_TASK_STACK_DEPTH, NULL, configTIMER_TASK_PRIORITY, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return xReturn;
|
|
|
|
|