]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/PIC18_MPLAB/main1.c
Update version number to 8.1.2 after moving the defaulting of configUSE_PORT_OPTIMISE...
[freertos] / FreeRTOS / Demo / PIC18_MPLAB / main1.c
index f6319c8dd625a60562a9002eb8181efba1e4b0f4..c5a0494b7a7e2ff601b211720705d29b3769e9b0 100644 (file)
@@ -1,5 +1,6 @@
 /*\r
-    FreeRTOS V7.5.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
 \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
 */\r
 \r
 /*\r
- * Instead of the normal single demo application, the PIC18F demo is split \r
- * into several smaller programs of which this is the first.  This enables the \r
- * demo's to be executed on the RAM limited 40 pin devices.  The 64 and 80 pin \r
- * devices require a more costly development platform and are not so readily \r
+ * Instead of the normal single demo application, the PIC18F demo is split\r
+ * into several smaller programs of which this is the first.  This enables the\r
+ * demo's to be executed on the RAM limited 40 pin devices.  The 64 and 80 pin\r
+ * devices require a more costly development platform and are not so readily\r
  * available.\r
  *\r
- * The RTOSDemo1 project is configured for a PIC18F452 device.  Main1.c starts 5 \r
+ * The RTOSDemo1 project is configured for a PIC18F452 device.  Main1.c starts 5\r
  * tasks (including the idle task).\r
  *\r
- * The first task runs at the idle priority.  It repeatedly performs a 32bit \r
- * calculation and checks it's result against the expected value.  This checks \r
- * that the temporary storage utilised by the compiler to hold intermediate \r
- * results does not get corrupted when the task gets switched in and out.  See \r
+ * The first task runs at the idle priority.  It repeatedly performs a 32bit\r
+ * calculation and checks it's result against the expected value.  This checks\r
+ * that the temporary storage utilised by the compiler to hold intermediate\r
+ * results does not get corrupted when the task gets switched in and out.  See\r
  * demo/common/minimal/integer.c for more information.\r
  *\r
- * The second and third tasks pass an incrementing value between each other on \r
+ * The second and third tasks pass an incrementing value between each other on\r
  * a message queue.  See demo/common/minimal/PollQ.c for more information.\r
  *\r
- * Main1.c also creates a check task.  This periodically checks that all the \r
- * other tasks are still running and have not experienced any unexpected \r
- * results.  If all the other tasks are executing correctly an LED is flashed \r
- * once every mainCHECK_PERIOD milliseconds.  If any of the tasks have not \r
- * executed, or report and error, the frequency of the LED flash will increase \r
+ * Main1.c also creates a check task.  This periodically checks that all the\r
+ * other tasks are still running and have not experienced any unexpected\r
+ * results.  If all the other tasks are executing correctly an LED is flashed\r
+ * once every mainCHECK_PERIOD milliseconds.  If any of the tasks have not\r
+ * executed, or report and error, the frequency of the LED flash will increase\r
  * to mainERROR_FLASH_RATE.\r
  *\r
  * On entry to main an 'X' is transmitted.  Monitoring the serial port using a\r
- * dumb terminal allows for verification that the device is not continuously \r
+ * dumb terminal allows for verification that the device is not continuously\r
  * being reset (no more than one 'X' should be transmitted).\r
  *\r
- * http://www.FreeRTOS.org contains important information on the use of the \r
+ * http://www.FreeRTOS.org contains important information on the use of the\r
  * PIC18F port.\r
  */\r
 \r
 Changes from V2.0.0\r
 \r
        + Delay periods are now specified using variables and constants of\r
-         portTickType rather than unsigned long.\r
+         TickType_t rather than unsigned long.\r
 */\r
 \r
 /* Scheduler include files. */\r
@@ -116,8 +117,8 @@ Changes from V2.0.0
 /* The period between executions of the check task before and after an error\r
 has been discovered.  If an error has been discovered the check task runs\r
 more frequently - increasing the LED flash rate. */\r
-#define mainNO_ERROR_CHECK_PERIOD              ( ( portTickType ) 1000 / portTICK_RATE_MS )\r
-#define mainERROR_CHECK_PERIOD                 ( ( portTickType ) 100 / portTICK_RATE_MS )\r
+#define mainNO_ERROR_CHECK_PERIOD              ( ( TickType_t ) 1000 / portTICK_PERIOD_MS )\r
+#define mainERROR_CHECK_PERIOD                 ( ( TickType_t ) 100 / portTICK_PERIOD_MS )\r
 \r
 /* Priority definitions for some of the tasks.  Other tasks just use the idle\r
 priority. */\r
@@ -127,10 +128,10 @@ priority. */
 /* The LED that is flashed by the check task. */\r
 #define mainCHECK_TASK_LED                             ( 0 )\r
 \r
-/* Constants required for the communications.  Only one character is ever \r
+/* Constants required for the communications.  Only one character is ever\r
 transmitted. */\r
 #define mainCOMMS_QUEUE_LENGTH                 ( 5 )\r
-#define mainNO_BLOCK                                   ( ( portTickType ) 0 )\r
+#define mainNO_BLOCK                                   ( ( TickType_t ) 0 )\r
 #define mainBAUD_RATE                                  ( ( unsigned long ) 9600 )\r
 \r
 /*\r
@@ -162,7 +163,7 @@ void main( void )
        vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
 \r
        /* Start the check task defined in this file. */\r
-       xTaskCreate( vErrorChecks, ( const char * const ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
+       xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
 \r
        /* Start the scheduler.  Will never return here. */\r
        vTaskStartScheduler();\r
@@ -171,7 +172,7 @@ void main( void )
 \r
 static void vErrorChecks( void *pvParameters )\r
 {\r
-portTickType xDelayTime = mainNO_ERROR_CHECK_PERIOD;\r
+TickType_t xDelayTime = mainNO_ERROR_CHECK_PERIOD;\r
 portBASE_TYPE xErrorOccurred;\r
 \r
        /* Cycle for ever, delaying then checking all the other tasks are still\r