mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-21 22:11:57 -04:00
Correct the configUSE_16_BIT_TICKS usage in the Win32 simulator port layer.
This commit is contained in:
parent
95b2901ba6
commit
3f10f92340
|
@ -68,7 +68,7 @@
|
|||
#define portSTACK_TYPE unsigned portLONG
|
||||
#define portBASE_TYPE portLONG
|
||||
|
||||
#if( USE_16_BIT_TICKS == 1 )
|
||||
#if( configUSE_16_BIT_TICKS == 1 )
|
||||
typedef unsigned portSHORT portTickType;
|
||||
#define portMAX_DELAY ( portTickType ) 0xffff
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue