]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/HCS12_CodeWarrior_banked/main.c
Update version number to V8.0.0 (without the release candidate number).
[freertos] / FreeRTOS / Demo / HCS12_CodeWarrior_banked / main.c
index e20cab9bf74c60a0e6e5258433f547cb105698c6..578bceb0900af07b4ce9d046b152841459b26319 100644 (file)
@@ -1,6 +1,6 @@
 \r
 /*\r
-    FreeRTOS V8.0.0:rc1 - Copyright (C) 2014 Real Time Engineers Ltd. \r
+    FreeRTOS V8.0.0 - Copyright (C) 2014 Real Time Engineers Ltd. \r
     All rights reserved\r
 \r
     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
@@ -124,8 +124,8 @@ that all the other tasks are operating without error.  If no errors are found
 the LED is toggled with mainCHECK_PERIOD frequency.  If an error is found \r
 then the toggle rate increases to mainERROR_CHECK_PERIOD. */\r
 #define mainCHECK_TASK_LED                     ( 7 )\r
-#define mainCHECK_PERIOD                       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
-#define mainERROR_CHECK_PERIOD         ( ( portTickType ) 500 / portTICK_RATE_MS )\r
+#define mainCHECK_PERIOD                       ( ( TickType_t ) 3000 / portTICK_PERIOD_MS  )\r
+#define mainERROR_CHECK_PERIOD         ( ( TickType_t ) 500 / portTICK_PERIOD_MS )\r
 \r
 /* The constants used in the idle task calculation. */\r
 #define intgCONST1                             ( ( long ) 123 )\r
@@ -214,8 +214,8 @@ void vMain( void )
 \r
 static void vErrorChecks( void *pvParameters )\r
 {\r
-portTickType xDelayPeriod = mainCHECK_PERIOD;\r
-portTickType xLastWakeTime;\r
+TickType_t xDelayPeriod = mainCHECK_PERIOD;\r
+TickType_t xLastWakeTime;\r
 \r
        /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()\r
        functions correctly. */\r