]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC/LEDs.c
Update version number to 8.1.2 after moving the defaulting of configUSE_PORT_OPTIMISE...
[freertos] / FreeRTOS-Plus / Demo / FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC / LEDs.c
index ec560bbd794e07418f9e08acd0eb1f92e425a26f..6c017429fcc2667053204354f599ad3b23898739 100644 (file)
@@ -1,5 +1,5 @@
 /*\r
-    FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. \r
+    FreeRTOS V8.1.2 - 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
     the terms of the GNU General Public License (version 2) as published by the\r
     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
 \r
-    >>! NOTE: The modification to the GPL is included to allow you to distribute\r
-    >>! a combined work that includes FreeRTOS without being obliged to provide\r
-    >>! the source code for proprietary components outside of the FreeRTOS\r
-    >>! kernel.\r
+    >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
+    >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
+    >>!   obliged to provide the source code for proprietary components     !<<\r
+    >>!   outside of the FreeRTOS kernel.                                   !<<\r
 \r
     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
@@ -100,11 +100,11 @@ static xTimerHandle xLEDToggleTimer = NULL;
        GPIO_SetDir( ledLED1_PORT, ledLED1_BIT, 1 );\r
 \r
     /* Create the timer used to toggle LED0. */\r
-       xLEDToggleTimer = xTimerCreate( ( const int8_t * ) "LEDTmr",    /* Just a text name to associate with the timer, useful for debugging, but not used by the kernel. */\r
-                                                               ledTOGGLE_RATE,                                         /* The period of the timer. */\r
-                                                               pdTRUE,                                                         /* This timer will autoreload, so uxAutoReload is set to pdTRUE. */\r
-                                                               NULL,                                                           /* The timer ID is not used, so can be set to NULL. */\r
-                                                               prvLEDToggleTimerCallback );            /* The callback function executed each time the timer expires. */\r
+       xLEDToggleTimer = xTimerCreate( "LEDTmr",               /* Just a text name to associate with the timer, useful for debugging, but not used by the kernel. */\r
+                                                                       ledTOGGLE_RATE, /* The period of the timer. */\r
+                                                                       pdTRUE,                 /* This timer will autoreload, so uxAutoReload is set to pdTRUE. */\r
+                                                                       NULL,                   /* The timer ID is not used, so can be set to NULL. */\r
+                                                                       prvLEDToggleTimerCallback );            /* The callback function executed each time the timer expires. */\r
 \r
     /* Sanity check that the timer was actually created. */\r
     configASSERT( xLEDToggleTimer );\r