Fix compiler warning in TimerDemo.c that is only seen when the file is compiled on 8 bit devices.

This commit is contained in:
Richard Barry 2011-11-22 13:18:54 +00:00
parent de4a548c07
commit 5832e409d1

View file

@ -708,7 +708,7 @@ static portTickType uxTick = ( portTickType ) -1;
/* The xHigherPriorityTaskWoken parameter is not used in this case as this /* The xHigherPriorityTaskWoken parameter is not used in this case as this
function is called from the tick hook anyway. However the API required it function is called from the tick hook anyway. However the API required it
to be present. */ to be present. */
portBASE_TYPE xHigherPriorityTaskWoken = pdTRUE; signed portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
portTickType xMargin; portTickType xMargin;
if( configTIMER_TASK_PRIORITY != ( configMAX_PRIORITIES - 1 ) ) if( configTIMER_TASK_PRIORITY != ( configMAX_PRIORITIES - 1 ) )