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