Correct the configUSE_16_BIT_TICKS usage in the GCC Coldfire port layer.

This commit is contained in:
Richard Barry 2011-02-28 16:11:26 +00:00
parent cb238fc1fa
commit 95b2901ba6

View file

@ -67,7 +67,7 @@ extern "C" {
#define portSTACK_TYPE unsigned int #define portSTACK_TYPE unsigned int
#define portBASE_TYPE int #define portBASE_TYPE int
#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