]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/PIC18_WizC/Demo4/main.c
Update version number to 9.0.0rc2.
[freertos] / FreeRTOS / Demo / PIC18_WizC / Demo4 / main.c
1 /*\r
2     FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 /*\r
71 Changes from V3.0.0\r
72 \r
73 Changes from V3.0.1\r
74 */\r
75 \r
76 /*\r
77  * Instead of the normal single demo application, the PIC18F demo is split\r
78  * into several smaller programs of which this is the fourth.  This enables the\r
79  * demo's to be executed on the RAM limited PIC-devices.\r
80  *\r
81  * The Demo4 project is configured for a PIC18F4620 device.  Main.c starts 11\r
82  * tasks (including the idle task). See the indicated files in the demo/common\r
83  * directory for more information.\r
84  *\r
85  * demo/common/minimal/integer.c:       Creates 1 task\r
86  * demo/common/minimal/dynamic.c:       Creates 5 tasks\r
87  * demo/common/minimal/flash.c:         Creates 3 tasks\r
88  *\r
89  * Main.c also creates a check task.  This periodically checks that all the\r
90  * other tasks are still running and have not experienced any unexpected\r
91  * results.  If all the other tasks are executing correctly an LED is flashed\r
92  * once every mainCHECK_PERIOD milliseconds.  If any of the tasks have not\r
93  * executed, or report an error, the frequency of the LED flash will increase\r
94  * to mainERROR_FLASH_RATE.\r
95  *\r
96  * On entry to main an 'X' is transmitted.  Monitoring the serial port using a\r
97  * dumb terminal allows for verification that the device is not continuously\r
98  * being reset (no more than one 'X' should be transmitted).\r
99  *\r
100  * http://www.FreeRTOS.org contains important information on the use of the\r
101  * wizC PIC18F port.\r
102  */\r
103 \r
104 /* Scheduler include files. */\r
105 #include <FreeRTOS.h>\r
106 #include <task.h>\r
107 \r
108 /* Demo app include files. */\r
109 #include "integer.h"\r
110 #include "dynamic.h"\r
111 #include "flash.h"\r
112 #include "partest.h"\r
113 #include "serial.h"\r
114 \r
115 /* The period between executions of the check task before and after an error\r
116 has been discovered.  If an error has been discovered the check task runs\r
117 more frequently - increasing the LED flash rate. */\r
118 #define mainNO_ERROR_CHECK_PERIOD       ( ( TickType_t ) 10000 / portTICK_PERIOD_MS )\r
119 #define mainERROR_CHECK_PERIOD          ( ( TickType_t )  1000 / portTICK_PERIOD_MS )\r
120 #define mainCHECK_TASK_LED                      ( ( unsigned char ) 3 )\r
121 \r
122 /* Priority definitions for some of the tasks.  Other tasks just use the idle\r
123 priority. */\r
124 #define mainCHECK_TASK_PRIORITY ( tskIDLE_PRIORITY + ( unsigned char ) 3 )\r
125 #define mainLED_FLASH_PRIORITY  ( tskIDLE_PRIORITY + ( unsigned char ) 2 )\r
126 #define mainINTEGER_PRIORITY    ( tskIDLE_PRIORITY + ( unsigned char ) 0 )\r
127 \r
128 /* Constants required for the communications.  Only one character is ever\r
129 transmitted. */\r
130 #define mainCOMMS_QUEUE_LENGTH          ( ( unsigned char ) 5 )\r
131 #define mainNO_BLOCK                            ( ( TickType_t ) 0 )\r
132 #define mainBAUD_RATE                           ( ( unsigned long ) 57600 )\r
133 \r
134 /*\r
135  * The task function for the "Check" task.\r
136  */\r
137 static portTASK_FUNCTION_PROTO( vErrorChecks, pvParameters );\r
138 \r
139 /*\r
140  * Checks the unique counts of other tasks to ensure they are still operational.\r
141  * Returns pdTRUE if an error is detected, otherwise pdFALSE.\r
142  */\r
143 static char prvCheckOtherTasksAreStillRunning( void );\r
144 \r
145 /*-----------------------------------------------------------*/\r
146 \r
147 /* Creates the tasks, then starts the scheduler. */\r
148 void main( void )\r
149 {\r
150         /* Initialise the required hardware. */\r
151         vParTestInitialise();\r
152 \r
153         /* Send a character so we have some visible feedback of a reset. */\r
154         xSerialPortInitMinimal( mainBAUD_RATE, mainCOMMS_QUEUE_LENGTH );\r
155         xSerialPutChar( NULL, 'X', mainNO_BLOCK );\r
156 \r
157         /* Start the standard demo tasks found in the demo\common directory. */\r
158         vStartIntegerMathTasks( mainINTEGER_PRIORITY);\r
159         vStartDynamicPriorityTasks();\r
160         vStartLEDFlashTasks( mainLED_FLASH_PRIORITY );\r
161 \r
162         /* Start the check task defined in this file. */\r
163         xTaskCreate( vErrorChecks, "Check", portMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
164 \r
165         /* Start the scheduler.  Will never return here. */\r
166         vTaskStartScheduler( );\r
167 \r
168         while(1)        /* This point should never be reached. */\r
169         {\r
170         }\r
171 }\r
172 /*-----------------------------------------------------------*/\r
173 \r
174 static portTASK_FUNCTION( vErrorChecks, pvParameters )\r
175 {\r
176         TickType_t xLastCheckTime;\r
177         TickType_t xDelayTime = mainNO_ERROR_CHECK_PERIOD;\r
178         char cErrorOccurred;\r
179 \r
180         /* We need to initialise xLastCheckTime prior to the first call to\r
181         vTaskDelayUntil(). */\r
182         xLastCheckTime = xTaskGetTickCount();\r
183 \r
184         /* Cycle for ever, delaying then checking all the other tasks are still\r
185         operating without error. */\r
186         for( ;; )\r
187         {\r
188                 /* Wait until it is time to check the other tasks again. */\r
189                 vTaskDelayUntil( &xLastCheckTime, xDelayTime );\r
190 \r
191                 /* Check all the other tasks are running, and running without ever\r
192                 having an error. */\r
193                 cErrorOccurred = prvCheckOtherTasksAreStillRunning();\r
194 \r
195                 /* If an error was detected increase the frequency of the LED flash. */\r
196                 if( cErrorOccurred == pdTRUE )\r
197                 {\r
198                         xDelayTime = mainERROR_CHECK_PERIOD;\r
199                 }\r
200 \r
201                 /* Flash the LED for visual feedback. */\r
202                 vParTestToggleLED( mainCHECK_TASK_LED );\r
203         }\r
204 }\r
205 \r
206 /*-----------------------------------------------------------*/\r
207 \r
208 static char prvCheckOtherTasksAreStillRunning( void )\r
209 {\r
210         char cErrorHasOccurred = ( char ) pdFALSE;\r
211 \r
212         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
213         {\r
214                 cErrorHasOccurred = ( char ) pdTRUE;\r
215         }\r
216 \r
217         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
218         {\r
219                 cErrorHasOccurred = ( char ) pdTRUE;\r
220         }\r
221 \r
222         return cErrorHasOccurred;\r
223 }\r
224 /*-----------------------------------------------------------*/\r
225 \r
226 \r