]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_AT91SAM3U256_IAR/main.c
Update to V5.4.2. See http://www.freertos.org/History.txt .
[freertos] / Demo / CORTEX_AT91SAM3U256_IAR / main.c
1 /*\r
2         FreeRTOS V5.4.2 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \r
6         FreeRTOS is free software; you can redistribute it and/or modify it     under \r
7         the terms of the GNU General Public License (version 2) as published by the \r
8         Free Software Foundation and modified by the FreeRTOS exception.\r
9         **NOTE** The exception to the GPL is included to allow you to distribute a\r
10         combined work that includes FreeRTOS without being obliged to provide the \r
11         source code for proprietary components outside of the FreeRTOS kernel.  \r
12         Alternative commercial license and support terms are also available upon \r
13         request.  See the licensing section of http://www.FreeRTOS.org for full \r
14         license details.\r
15 \r
16         FreeRTOS is distributed in the hope that it will be useful,     but WITHOUT\r
17         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19         more details.\r
20 \r
21         You should have received a copy of the GNU General Public License along\r
22         with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 \r
25 \r
26         ***************************************************************************\r
27         *                                                                         *\r
28         * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29         * See http://www.FreeRTOS.org/Documentation for details                   *\r
30         *                                                                         *\r
31         ***************************************************************************\r
32 \r
33         1 tab == 4 spaces!\r
34 \r
35         Please ensure to read the configuration and relevant port sections of the\r
36         online documentation.\r
37 \r
38         http://www.FreeRTOS.org - Documentation, latest information, license and\r
39         contact details.\r
40 \r
41         http://www.SafeRTOS.com - A version that is certified for use in safety\r
42         critical systems.\r
43 \r
44         http://www.OpenRTOS.com - Commercial support, development, porting,\r
45         licensing and training services.\r
46 */\r
47 \r
48 /*\r
49  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
50  * documentation provides more details of the standard demo application tasks\r
51  * (which just exist to test the kernel port and provide an example of how to use\r
52  * each FreeRTOS API function).\r
53  *\r
54  * In addition to the standard demo tasks, the following tasks and tests are\r
55  * defined and/or created within this file:\r
56  *\r
57  * "LCD" task - the LCD task is a 'gatekeeper' task.  It is the only task that\r
58  * is permitted to access the display directly.  Other tasks wishing to write a\r
59  * message to the LCD send the message on a queue to the LCD task instead of\r
60  * accessing the LCD themselves.  The LCD task just blocks on the queue waiting\r
61  * for messages - waking and displaying the messages as they arrive.  The use\r
62  * of a gatekeeper in this manner permits both tasks and interrupts to write to\r
63  * the LCD without worrying about mutual exclusion.  This is demonstrated by the\r
64  * check hook (see below) which sends messages to the display even though it\r
65  * executes from an interrupt context.\r
66  *\r
67  * "Check" hook -  This only executes fully every five seconds from the tick\r
68  * hook.  Its main function is to check that all the standard demo tasks are\r
69  * still operational.  Should any unexpected behaviour be discovered within a\r
70  * demo task then the tick hook will write an error to the LCD (via the LCD task).\r
71  * If all the demo tasks are executing with their expected behaviour then the\r
72  * check task writes PASS to the LCD (again via the LCD task), as described above.\r
73  *\r
74  */\r
75 \r
76 /* Scheduler includes. */\r
77 #include "FreeRTOS.h"\r
78 #include "task.h"\r
79 #include "queue.h"\r
80 #include "semphr.h"\r
81 \r
82 /* Demo app includes. */\r
83 #include "BlockQ.h"\r
84 #include "integer.h"\r
85 #include "blocktim.h"\r
86 #include "flash.h"\r
87 #include "partest.h"\r
88 #include "semtest.h"\r
89 #include "PollQ.h"\r
90 #include "lcd_message.h"\r
91 #include "GenQTest.h"\r
92 #include "QPeek.h"\r
93 #include "recmutex.h"\r
94 #include "flash.h"\r
95 #include "comtest2.h"\r
96 \r
97 /* Atmel library includes. */\r
98 #include <board.h>\r
99 #include <lcd/color.h>\r
100 #include <lcd/lcdd.h>\r
101 #include <lcd/draw.h>\r
102 \r
103 \r
104 /*-----------------------------------------------------------*/\r
105 \r
106 /* The time between cycles of the 'check' functionality (defined within the\r
107 tick hook). */\r
108 #define mainCHECK_DELAY                                         ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
109 \r
110 /* The LCD task uses the sprintf function so requires a little more stack too. */\r
111 #define mainLCD_TASK_STACK_SIZE                         ( configMINIMAL_STACK_SIZE * 2 )\r
112 \r
113 /* Task priorities. */\r
114 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
115 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
116 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
117 #define mainLED_TASK_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
118 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 2 )\r
119 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
120 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
121 \r
122 /* The maximum number of message that can be waiting for display at any one\r
123 time. */\r
124 #define mainLCD_QUEUE_SIZE                                      ( 3 )\r
125 \r
126 /* Constants used by the comtest tasks.  There isn't a spare LED so an invalid\r
127 LED is specified. */\r
128 #define mainBAUD_RATE                                           ( 115200 )\r
129 #define mainCOM_TEST_LED                                        ( 10 )\r
130 \r
131 /*-----------------------------------------------------------*/\r
132 \r
133 /*\r
134  * Configure the hardware for the demo.\r
135  */\r
136 static void prvSetupHardware( void );\r
137 \r
138 /*\r
139  * The LCD gatekeeper task.  Tasks wishing to write to the LCD do not access\r
140  * the LCD directly, but instead send the message to the LCD gatekeeper task.\r
141  */\r
142 static void prvLCDTask( void *pvParameters );\r
143 \r
144 /*\r
145  * Hook functions that can get called by the kernel.  The 'check' functionality\r
146  * is implemented within the tick hook.\r
147  */\r
148 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName );\r
149 \r
150 /*\r
151  * The tick hook function as described in the comments at the top of this file.\r
152  * The tick hook is used to monitor all the standard demo tasks to look for\r
153  * errors.  The tick hook is also used to demonstrate how the LCD gatekeeper\r
154  * task can be used to allow interrupts to write to the LCD.\r
155  */\r
156 void vApplicationTickHook( void );\r
157 \r
158 \r
159 /*-----------------------------------------------------------*/\r
160 \r
161 /* The queue used to send messages to the LCD task. */\r
162 static xQueueHandle xLCDQueue;\r
163 \r
164 /*-----------------------------------------------------------*/\r
165 \r
166 int main( void )\r
167 {\r
168         /* Prepare the hardware. */\r
169         prvSetupHardware();\r
170 \r
171         /* Create the queue used by the LCD task.  Messages for display on the LCD\r
172         are received via this queue. */\r
173         xLCDQueue = xQueueCreate( mainLCD_QUEUE_SIZE, sizeof( xLCDMessage ) );\r
174 \r
175         /* Start the standard demo tasks.  These do nothing other than test the\r
176         port and provide some APU usage examples. */\r
177     vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
178     vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
179         vStartRecursiveMutexTasks();    \r
180         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
181         vCreateBlockTimeTasks();\r
182         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
183         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
184         vStartQueuePeekTasks(); \r
185         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );   \r
186         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainBAUD_RATE, mainCOM_TEST_LED );\r
187 \r
188         /* Start the tasks defined within this file/specific to this demo. */\r
189         xTaskCreate( prvLCDTask, ( signed char * ) "LCD", mainLCD_TASK_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
190 \r
191         /* Start the scheduler. */\r
192         vTaskStartScheduler();\r
193 \r
194     /* Will only get here if there was insufficient memory to create the idle\r
195     task. */\r
196         return 0;\r
197 }\r
198 /*-----------------------------------------------------------*/\r
199 \r
200 void prvSetupHardware( void )\r
201 {\r
202         /* Initialise the port used for the LED outputs. */\r
203         vParTestInitialise();\r
204 }\r
205 /*-----------------------------------------------------------*/\r
206 \r
207 void vApplicationTickHook( void )\r
208 {\r
209 static xLCDMessage xMessage = { "PASS" };\r
210 static unsigned portLONG ulTicksSinceLastDisplay = 0;\r
211 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
212 \r
213         /* Called from every tick interrupt.  Have enough ticks passed to make it\r
214         time to perform our health status check again? */\r
215         ulTicksSinceLastDisplay++;\r
216         if( ulTicksSinceLastDisplay >= mainCHECK_DELAY )\r
217         {\r
218                 ulTicksSinceLastDisplay = 0;\r
219                 \r
220                 /* Has an error been found in any task? */\r
221                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
222                 {\r
223                         xMessage.pcMessage = "ERROR IN GEN Q";\r
224                 }\r
225             if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
226             {\r
227                 xMessage.pcMessage = "ERROR IN MATH";\r
228             }\r
229                 else if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
230                 {\r
231                         xMessage.pcMessage = "ERROR IN BLOCK Q";\r
232                 }\r
233                 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
234                 {\r
235                         xMessage.pcMessage = "ERROR IN BLOCK TIME";\r
236                 }\r
237                 else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
238                 {\r
239                         xMessage.pcMessage = "ERROR IN SEMAPHORE";\r
240                 }\r
241                 else if( xArePollingQueuesStillRunning() != pdTRUE )\r
242                 {\r
243                         xMessage.pcMessage = "ERROR IN POLL Q";\r
244                 }\r
245                 else if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
246                 {\r
247                         xMessage.pcMessage = "ERROR IN PEEK Q";\r
248                 }                       \r
249                 else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
250                 {\r
251                         xMessage.pcMessage = "ERROR IN REC MUTEX";\r
252                 }               \r
253                 else if( xAreComTestTasksStillRunning() != pdTRUE )\r
254                 {\r
255                         xMessage.pcMessage = "ERROR IN COMTEST";\r
256                 }\r
257                 \r
258                 /* Send the message to the LCD gatekeeper for display. */\r
259                 xHigherPriorityTaskWoken = pdFALSE;\r
260                 xQueueSendFromISR( xLCDQueue, &xMessage, &xHigherPriorityTaskWoken );\r
261         }\r
262 }\r
263 /*-----------------------------------------------------------*/\r
264 \r
265 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName )\r
266 {\r
267         ( void ) pxTask;\r
268         ( void ) pcTaskName;\r
269 \r
270         /* If the parameters have been corrupted then inspect pxCurrentTCB to\r
271         identify which task has overflowed its stack. */\r
272         for( ;; );\r
273 }\r
274 /*-----------------------------------------------------------*/\r
275 \r
276 static void prvLCDTask( void *pvParameters )\r
277 {\r
278 xLCDMessage xMessage;\r
279 unsigned long ulY = 0;\r
280 const unsigned long ulX = 5;\r
281 const unsigned long ulMaxY = 250, ulYIncrement = 22, ulWidth = 250, ulHeight = 20;;\r
282 \r
283     /* Initialize LCD. */\r
284     LCDD_Initialize();\r
285     LCDD_Start();       \r
286         LCDD_Fill( ( void * ) BOARD_LCD_BASE, COLOR_WHITE );\r
287         LCDD_DrawString( ( void * ) BOARD_LCD_BASE, 1, ulY + 3, "  www.FreeRTOS.org", COLOR_BLACK );\r
288         \r
289         for( ;; )\r
290         {\r
291                 /* Wait for a message from the check function (which is executed in\r
292                 the tick hook). */\r
293                 xQueueReceive( xLCDQueue, &xMessage, portMAX_DELAY );\r
294 \r
295                 /* Clear the space where the old message was. */\r
296         LCDD_DrawRectangle( ( void * ) BOARD_LCD_BASE, 0, ulY, ulWidth, ulHeight, COLOR_WHITE );\r
297                 \r
298                 /* Increment to the next drawing position. */\r
299                 ulY += ulYIncrement;\r
300                 \r
301                 /* Have the Y position moved past the end of the LCD? */\r
302                 if( ulY >= ulMaxY )\r
303                 {\r
304                         ulY = 0;\r
305                 }\r
306 \r
307                 /* Draw a new rectangle, in which the message will be written. */\r
308         LCDD_DrawRectangle( ( void * ) BOARD_LCD_BASE, 0, ulY, ulWidth, ulHeight, COLOR_GREEN );\r
309                 \r
310                 /* Write the message. */\r
311         LCDD_DrawString( ( void * ) BOARD_LCD_BASE, ulX, ulY + 3, xMessage.pcMessage, COLOR_BLACK );\r
312         }\r
313 }\r