Correct the configUSE_16_BIT_TICKS usage in the Win32 simulator port layer.

This commit is contained in:
Richard Barry 2011-02-28 16:12:55 +00:00
parent 95b2901ba6
commit 3f10f92340

View File

@ -68,7 +68,7 @@
#define portSTACK_TYPE unsigned portLONG #define portSTACK_TYPE unsigned portLONG
#define portBASE_TYPE portLONG #define portBASE_TYPE portLONG
#if( USE_16_BIT_TICKS == 1 ) #if( configUSE_16_BIT_TICKS == 1 )
typedef unsigned portSHORT portTickType; typedef unsigned portSHORT portTickType;
#define portMAX_DELAY ( portTickType ) 0xffff #define portMAX_DELAY ( portTickType ) 0xffff
#else #else