mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -04:00
Remove the Demo/Common/Utils directory as the CLI code is currently provided separately.
This commit is contained in:
parent
bb708957a9
commit
2a9b42cbc3
3 changed files with 4 additions and 477 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue