]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/CORTEX_STM32F103_Keil/ParTest/ParTest.c
Change version numbers ready for V8.0.0 release candidate 1 tag.
[freertos] / FreeRTOS / Demo / CORTEX_STM32F103_Keil / ParTest / ParTest.c
index 6ca8e36a3f9cdcd062b33f51fad7309fe9851847..09fa030bba6a2338e117a539088c47fef11b9317 100644 (file)
@@ -1,5 +1,6 @@
 /*\r
-    FreeRTOS V7.5.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
+    FreeRTOS V8.0.0:rc1 - 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
 \r
@@ -77,7 +78,7 @@
 #define partstMAX_OUTPUT_LED   ( 4 )\r
 #define partstFIRST_LED                        GPIO_Pin_6\r
 \r
-static unsigned portSHORT usOutputValue = 0;\r
+static unsigned short usOutputValue = 0;\r
 \r
 /*-----------------------------------------------------------*/\r
 \r
@@ -95,7 +96,7 @@ GPIO_InitTypeDef GPIO_InitStructure;
 \r
 void vParTestSetLED( unsigned portBASE_TYPE uxLED, signed portBASE_TYPE xValue )\r
 {\r
-unsigned portSHORT usBit;\r
+unsigned short usBit;\r
 \r
        vTaskSuspendAll();\r
        {\r
@@ -105,7 +106,7 @@ unsigned portSHORT usBit;
 \r
                        if( xValue == pdFALSE )\r
                        {\r
-                               usBit ^= ( unsigned portSHORT ) 0xffff;\r
+                               usBit ^= ( unsigned short ) 0xffff;\r
                                usOutputValue &= usBit;\r
                        }\r
                        else\r
@@ -122,7 +123,7 @@ unsigned portSHORT usBit;
 \r
 void vParTestToggleLED( unsigned portBASE_TYPE uxLED )\r
 {\r
-unsigned portSHORT usBit;\r
+unsigned short usBit;\r
 \r
        vTaskSuspendAll();\r
        {\r