From 95b2901ba6f231fe9944c4e8cd7acf896d4fd679 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Mon, 28 Feb 2011 16:11:26 +0000 Subject: [PATCH] Correct the configUSE_16_BIT_TICKS usage in the GCC Coldfire port layer. --- Source/portable/GCC/MCF5235/portmacro.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/portable/GCC/MCF5235/portmacro.h b/Source/portable/GCC/MCF5235/portmacro.h index 7e94b5f4b..90ecf78ea 100644 --- a/Source/portable/GCC/MCF5235/portmacro.h +++ b/Source/portable/GCC/MCF5235/portmacro.h @@ -67,7 +67,7 @@ extern "C" { #define portSTACK_TYPE unsigned int #define portBASE_TYPE int -#if( USE_16_BIT_TICKS == 1 ) +#if( configUSE_16_BIT_TICKS == 1 ) typedef unsigned portSHORT portTickType; #define portMAX_DELAY ( portTickType ) 0xffff #else