summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/portable/Paradigm/Tern_EE/small
diff options
context:
space:
mode:
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2014-01-05 20:40:55 +0000
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>2014-01-05 20:40:55 +0000
commita01c12a14b6e8ec7f9b99fd51ea325edf57d7606 (patch)
tree356b8e18addbdc34db0eb30f95e23e57bf0735ab /FreeRTOS/Source/portable/Paradigm/Tern_EE/small
parentb85ae7842b7299f4bd0538a05c027ec5e32ec108 (diff)
downloadfreertos-a01c12a14b6e8ec7f9b99fd51ea325edf57d7606.tar.gz
Map portTICK_RATE_MS to portTICK_PERIOD_MS.
git-svn-id: http://svn.code.sf.net/p/freertos/code/trunk@2164 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
Diffstat (limited to 'FreeRTOS/Source/portable/Paradigm/Tern_EE/small')
-rw-r--r--FreeRTOS/Source/portable/Paradigm/Tern_EE/small/portmacro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeRTOS/Source/portable/Paradigm/Tern_EE/small/portmacro.h b/FreeRTOS/Source/portable/Paradigm/Tern_EE/small/portmacro.h
index 85584ad9d..2cc95e9e6 100644
--- a/FreeRTOS/Source/portable/Paradigm/Tern_EE/small/portmacro.h
+++ b/FreeRTOS/Source/portable/Paradigm/Tern_EE/small/portmacro.h
@@ -121,7 +121,7 @@ typedef void ( __interrupt __far *pxISR )();
#define portSTACK_GROWTH ( -1 )
#define portSWITCH_INT_NUMBER 0x80
#define portYIELD() __asm{ int portSWITCH_INT_NUMBER }
-#define portTICK_RATE_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
+#define portTICK_PERIOD_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
#define portBYTE_ALIGNMENT 2
#define portINITIAL_SW ( ( portSTACK_TYPE ) 0x0202 ) /* Start the tasks with interrupts enabled. */
/*-----------------------------------------------------------*/