]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTUS_APS3_GCC/Demo/main.c
Update version numbers in preparation for V8.2.0 release candidate 1.
[freertos] / FreeRTOS / Demo / CORTUS_APS3_GCC / Demo / main.c
1 /*\r
2     FreeRTOS V8.2.0rc1 - Copyright (C) 2014 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     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
14     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
15     >>!   obliged to provide the source code for proprietary components     !<<\r
16     >>!   outside of the FreeRTOS kernel.                                   !<<\r
17 \r
18     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
19     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
20     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
21     link: http://www.freertos.org/a00114.html\r
22 \r
23     1 tab == 4 spaces!\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    Having a problem?  Start by reading the FAQ "My application does   *\r
28      *    not run, what could be wrong?".  Have you defined configASSERT()?  *\r
29      *                                                                       *\r
30      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
31      *                                                                       *\r
32     ***************************************************************************\r
33 \r
34     ***************************************************************************\r
35      *                                                                       *\r
36      *    FreeRTOS provides completely free yet professionally developed,    *\r
37      *    robust, strictly quality controlled, supported, and cross          *\r
38      *    platform software that is more than just the market leader, it     *\r
39      *    is the industry's de facto standard.                               *\r
40      *                                                                       *\r
41      *    Help yourself get started quickly while simultaneously helping     *\r
42      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
43      *    tutorial book, reference manual, or both:                          *\r
44      *    http://www.FreeRTOS.org/Documentation                              *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     ***************************************************************************\r
49      *                                                                       *\r
50      *   Investing in training allows your team to be as productive as       *\r
51      *   possible as early as possible, lowering your overall development    *\r
52      *   cost, and enabling you to bring a more robust product to market     *\r
53      *   earlier than would otherwise be possible.  Richard Barry is both    *\r
54      *   the architect and key author of FreeRTOS, and so also the world's   *\r
55      *   leading authority on what is the world's most popular real time     *\r
56      *   kernel for deeply embedded MCU designs.  Obtaining your training    *\r
57      *   from Richard ensures your team will gain directly from his in-depth *\r
58      *   product knowledge and years of usage experience.  Contact Real Time *\r
59      *   Engineers Ltd to enquire about the FreeRTOS Masterclass, presented  *\r
60      *   by Richard Barry:  http://www.FreeRTOS.org/contact\r
61      *                                                                       *\r
62     ***************************************************************************\r
63 \r
64     ***************************************************************************\r
65      *                                                                       *\r
66      *    You are receiving this top quality software for free.  Please play *\r
67      *    fair and reciprocate by reporting any suspected issues and         *\r
68      *    participating in the community forum:                              *\r
69      *    http://www.FreeRTOS.org/support                                    *\r
70      *                                                                       *\r
71      *    Thank you!                                                         *\r
72      *                                                                       *\r
73     ***************************************************************************\r
74 \r
75     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
76     license and Real Time Engineers Ltd. contact details.\r
77 \r
78     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
79     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
80     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
81 \r
82     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
83     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
84 \r
85     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
86     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
87     licenses offer ticketed support, indemnification and commercial middleware.\r
88 \r
89     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
90     engineered and independently SIL3 certified version for use in safety and\r
91     mission critical applications that require provable dependability.\r
92 \r
93     1 tab == 4 spaces!\r
94 */\r
95 \r
96 /*\r
97  * Creates all the demo application tasks, then starts the scheduler.\r
98  *\r
99  * Main.c also creates a task called "Check".  This only executes every three\r
100  * seconds but has the highest priority so is guaranteed to get processor time.\r
101  * Its main function is to check that all the other tasks are still operational.\r
102  * Each task (other than the "flash" tasks) maintains a unique count that is\r
103  * incremented each time the task successfully completes its function.  Should\r
104  * any error occur within such a task the count is permanently halted.  The\r
105  * check task inspects the count of each task to ensure it has changed since\r
106  * the last time the check task executed.  If all the count variables have\r
107  * changed all the tasks are still executing error free, and the check task\r
108  * toggles the on board LED.  Should any task contain an error at any time\r
109  * the LED toggle rate will change from 3 seconds to 500ms.\r
110  *\r
111  * NOTE:  The demo application includes tasks that send and receive characters\r
112  * over the UART. The characters sent by one task are received by another -\r
113  * with an error condition being flagged should any characters be missed or\r
114  * received out of order. A loopback connector is required on the 9way D socket\r
115  * for this mechanism to operation (pins 2 and 3 the socket should be connected\r
116  * together - a paper clip is normally sufficient).\r
117  *\r
118  */\r
119 \r
120 /* Standard includes. */\r
121 #include <stdlib.h>\r
122 #include <string.h>\r
123 \r
124 /* Scheduler includes. */\r
125 #include "FreeRTOS.h"\r
126 #include "task.h"\r
127 \r
128 /* Demo application includes. */\r
129 #include "partest.h"\r
130 #include "flash.h"\r
131 #include "integer.h"\r
132 #include "PollQ.h"\r
133 #include "comtest2.h"\r
134 #include "semtest.h"\r
135 #include "flop.h"\r
136 #include "dynamic.h"\r
137 #include "BlockQ.h"\r
138 #include "serial.h"\r
139 #include "demoGpio.h"\r
140 #include "7seg.h"\r
141 #include "RegTest.h"\r
142 \r
143 /*-----------------------------------------------------------*/\r
144 \r
145 /* Constants for the ComTest tasks. */\r
146 #define mainCOM_TEST_BAUD_RATE  ( ( unsigned long ) 115200 )\r
147 #define mainCOM_TEST_LED                ( 5 )\r
148 \r
149 /* Priorities for the demo application tasks. */\r
150 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
151 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
152 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
153 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
154 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
155 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
156 #define main7SEG_TASK_PRIORITY          ( tskIDLE_PRIORITY + 2 )\r
157 \r
158 /* The rate at which the on board LED will toggle when there is/is not an\r
159 error. */\r
160 #define mainNO_ERROR_FLASH_PERIOD       ( ( TickType_t ) 3000 / portTICK_PERIOD_MS      )\r
161 #define mainERROR_FLASH_PERIOD          ( ( TickType_t ) 500 / portTICK_PERIOD_MS  )\r
162 #define mainON_BOARD_LED_BIT            ( ( unsigned long ) 7 )\r
163 \r
164 /* The size of the memory blocks allocated by the vMemCheckTask() task. */\r
165 #define mainMEM_CHECK_SIZE_1            ( ( size_t ) 51 )\r
166 #define mainMEM_CHECK_SIZE_2            ( ( size_t ) 52 )\r
167 #define mainMEM_CHECK_SIZE_3            ( ( size_t ) 151 )\r
168 \r
169 /*-----------------------------------------------------------*/\r
170 \r
171 /*\r
172  * Checks that all the demo application tasks are still executing without error\r
173  * - as described at the top of the file.\r
174  */\r
175 static long prvCheckOtherTasksAreStillRunning( void );\r
176 \r
177 /*\r
178  * The task that executes at the highest priority and calls\r
179  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
180  * of the file.\r
181  */\r
182 static void vErrorChecks( void *pvParameters );\r
183 \r
184 /*\r
185  * Configure the processor for use with the Olimex demo board.  This includes\r
186  * setup for the I/O, system clock, and access timings.\r
187  */\r
188 static void prvSetupHardware( void );\r
189 \r
190 \r
191 /*-----------------------------------------------------------*/\r
192 \r
193 /*\r
194  * Starts all the other tasks, then starts the scheduler.\r
195  */\r
196 int main( void )\r
197 {\r
198         /* Setup the hardware for use with the Xilinx evaluation board. */\r
199         prvSetupHardware();\r
200 \r
201         /* Start the demo/test application tasks. */\r
202         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
203         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
204         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
205         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
206         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
207         vStartDynamicPriorityTasks();\r
208         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
209         vStart7SegTasks( main7SEG_TASK_PRIORITY );\r
210         vStartRegTestTasks();\r
211 \r
212         /* Start the check task - which is defined in this file. */\r
213         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
214 \r
215         /* Now all the tasks have been started - start the scheduler. */\r
216         vTaskStartScheduler();\r
217 \r
218         /* Should never reach here! */\r
219         for( ;; );\r
220 }\r
221 /*-----------------------------------------------------------*/\r
222 \r
223 static void vErrorChecks( void *pvParameters )\r
224 {\r
225 TickType_t xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
226 \r
227         /* Just to stop compiler warnings. */\r
228         ( void ) pvParameters;\r
229 \r
230         /* Cycle for ever, delaying then checking all the other tasks are still\r
231         operating without error.  If an error is detected then the delay period\r
232         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
233         the on board LED flash rate will increase. */\r
234 \r
235         for( ;; )\r
236         {\r
237                 /* Delay until it is time to execute again. */\r
238                 vTaskDelay( xDelayPeriod );\r
239 \r
240                 /* Check all the standard demo application tasks are executing without\r
241                 error.  */\r
242                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
243                 {\r
244                         /* An error has been detected in one of the tasks - flash faster. */\r
245                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
246                 }\r
247 \r
248                 /* The toggle rate of the LED depends on how long this task delays for.\r
249                 An error reduces the delay period and so increases the toggle rate. */\r
250                 vParTestToggleLED( mainON_BOARD_LED_BIT );\r
251         }\r
252 }\r
253 /*-----------------------------------------------------------*/\r
254 \r
255 static void prvSetupHardware( void )\r
256 {\r
257         /* Initialise LED outputs. */\r
258         vParTestInitialise();\r
259 }\r
260 /*-----------------------------------------------------------*/\r
261 \r
262 static long prvCheckOtherTasksAreStillRunning( void )\r
263 {\r
264 long lReturn = pdPASS;\r
265 \r
266         /* Check all the demo tasks (other than the flash tasks) to ensure\r
267         that they are all still running, and that none of them have detected\r
268         an error. */\r
269 \r
270         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
271         {\r
272                 lReturn = pdFAIL;\r
273         }\r
274 \r
275         if( xAreComTestTasksStillRunning() != pdTRUE )\r
276         {\r
277                 lReturn = pdFAIL;\r
278         }\r
279 \r
280         if( xArePollingQueuesStillRunning() != pdTRUE )\r
281         {\r
282                 lReturn = pdFAIL;\r
283         }\r
284 \r
285         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
286         {\r
287                 lReturn = pdFAIL;\r
288         }\r
289 \r
290         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
291         {\r
292                 lReturn = pdFAIL;\r
293         }\r
294 \r
295         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
296         {\r
297                 lReturn = pdFAIL;\r
298         }\r
299 \r
300         if( xAreRegTestTasksStillRunning() != pdTRUE )\r
301         {\r
302                 lReturn = pdFAIL;\r
303         }\r
304 \r
305         return lReturn;\r
306 }\r
307 /*-----------------------------------------------------------*/\r
308 \r
309 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
310 {\r
311         /* This function will be called if a task overflows its stack.  Inspect\r
312         pxCurrentTCB to find the offending task if the overflow was sever enough\r
313         to corrupt the pcTaskName parameter. */\r
314         vParTestSetLED( 4, 1 );\r
315         for( ;; );\r
316 }\r
317 /*-----------------------------------------------------------*/\r
318 \r
319 void vApplicationMallocFailedHook( void )\r
320 {\r
321         /* This function will be called if a call to pvPortMalloc() fails to return\r
322         the requested memory.  pvPortMalloc() is called internally by the scheduler\r
323         whenever a task, queue or semaphore is created. */\r
324         vParTestSetLED( 4, 1 );\r
325         for( ;; );\r
326 }\r
327 /*-----------------------------------------------------------*/\r
328 \r
329 /* Provide an exit function to prevent a whole load of standard library functions\r
330 being brought into the build. */\r
331 void exit( int status )\r
332 {\r
333         for( ;; );\r
334 }\r
335 \r
336 \r