Remove the Demo/Common/Utils directory as the CLI code is currently provided separately.

This commit is contained in:
Richard Barry 2012-04-02 09:24:11 +00:00
parent bb708957a9
commit 2a9b42cbc3
3 changed files with 4 additions and 477 deletions

View file

@ -997,12 +997,12 @@ portTickType xMargin;
static void prvAutoReloadTimerCallback( xTimerHandle pxExpiredTimer )
{
portBASE_TYPE xTimerID;
unsigned long ulTimerID;
xTimerID = ( portBASE_TYPE ) pvTimerGetTimerID( pxExpiredTimer );
if( xTimerID <= ( configTIMER_QUEUE_LENGTH + 1 ) )
ulTimerID = ( unsigned long ) pvTimerGetTimerID( pxExpiredTimer );
if( ulTimerID <= ( configTIMER_QUEUE_LENGTH + 1 ) )
{
( ucAutoReloadTimerCounters[ xTimerID ] )++;
( ucAutoReloadTimerCounters[ ulTimerID ] )++;
}
else
{