From 420560ba048b4d19d84cd9992aa0a482a8ec7305 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Mon, 28 Feb 2011 16:11:26 +0000 Subject: [PATCH] Correct the configUSE_16_BIT_TICKS usage in the GCC Coldfire port layer. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1309 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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 -- 2.39.5