]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_A2F200_SoftConsole/main-blinky.c
Update the A2F SoftConsole project files to remove the strange unused/invalid include...
[freertos] / Demo / CORTEX_A2F200_SoftConsole / main-blinky.c
1 /*\r
2     FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
3 \r
4     ***************************************************************************\r
5     *                                                                         *\r
6     * If you are:                                                             *\r
7     *                                                                         *\r
8     *    + New to FreeRTOS,                                                   *\r
9     *    + Wanting to learn FreeRTOS or multitasking in general quickly       *\r
10     *    + Looking for basic training,                                        *\r
11     *    + Wanting to improve your FreeRTOS skills and productivity           *\r
12     *                                                                         *\r
13     * then take a look at the FreeRTOS books - available as PDF or paperback  *\r
14     *                                                                         *\r
15     *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *\r
16     *                  http://www.FreeRTOS.org/Documentation                  *\r
17     *                                                                         *\r
18     * A pdf reference manual is also available.  Both are usually delivered   *\r
19     * to your inbox within 20 minutes to two hours when purchased between 8am *\r
20     * and 8pm GMT (although please allow up to 24 hours in case of            *\r
21     * exceptional circumstances).  Thank you for your support!                *\r
22     *                                                                         *\r
23     ***************************************************************************\r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     ***NOTE*** The exception to the GPL is included to allow you to distribute\r
31     a combined work that includes FreeRTOS without being obliged to provide the\r
32     source code for proprietary components outside of the FreeRTOS kernel.\r
33     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
34     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
35     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 /*\r
55 * This simple demo project runs on the STM32 Discovery board, which is\r
56 * populated with an STM32F100RB Cortex-M3 microcontroller.  The discovery board \r
57 * makes an ideal low cost evaluation platform, but the 8K of RAM provided on the\r
58 * STM32F100RB does not allow the simple application to demonstrate all of all the \r
59 * FreeRTOS kernel features.  Therefore, this simple demo only actively \r
60 * demonstrates task, queue, timer and interrupt functionality.  In addition, the \r
61 * demo is configured to include malloc failure, idle and stack overflow hook \r
62 * functions.\r
63\r
64 * The idle hook function:\r
65 * The idle hook function queries the amount of FreeRTOS heap space that is\r
66 * remaining (see vApplicationIdleHook() defined in this file).  The demo \r
67 * application is configured use 7K or the available 8K of RAM as the FreeRTOS heap.\r
68 * Memory is only allocated from this heap during initialisation, and this demo \r
69 * only actually uses 1.6K bytes of the configured 7K available - leaving 5.4K \r
70 * bytes of heap space unallocated.\r
71\r
72 * The main() Function:\r
73 * main() creates one software timer, one queue, and two tasks.  It then starts the\r
74 * scheduler.\r
75\r
76 * The Queue Send Task:\r
77 * The queue send task is implemented by the prvQueueSendTask() function in this \r
78 * file.  prvQueueSendTask() sits in a loop that causes it to repeatedly block for \r
79 * 200 milliseconds, before sending the value 100 to the queue that was created \r
80 * within main().  Once the value is sent, the task loops back around to block for\r
81 * another 200 milliseconds.\r
82\r
83 * The Queue Receive Task:\r
84 * The queue receive task is implemented by the prvQueueReceiveTask() function\r
85 * in this file.  prvQueueReceiveTask() sits in a loop that causes repeatedly \r
86 * attempt to read data from the queue that was created within main().  When data \r
87 * is received, the task checks the value of the data, and if the value equals \r
88 * the expected 100, toggles the green LED.  The 'block time' parameter passed to \r
89 * the queue receive function specifies that the task should be held in the Blocked \r
90 * state indefinitely to wait for data to be available on the queue.  The queue \r
91 * receive task will only leave the Blocked state when the queue send task writes \r
92 * to the queue.  As the queue send task writes to the queue every 200 \r
93 * milliseconds, the queue receive task leaves the Blocked state every 200 \r
94 * milliseconds, and therefore toggles the green LED every 200 milliseconds.\r
95\r
96 * The LED Software Timer and the Button Interrupt:\r
97 * The user button B1 is configured to generate an interrupt each time it is\r
98 * pressed.  The interrupt service routine switches the red LED on, and resets the \r
99 * LED software timer.  The LED timer has a 5000 millisecond (5 second) period, and\r
100 * uses a callback function that is defined to just turn the red LED off.  \r
101 * Therefore, pressing the user button will turn the red LED on, and the LED will \r
102 * remain on until a full five seconds pass without the button being pressed.\r
103 */\r
104 \r
105 /* Kernel includes. */\r
106 #include "FreeRTOS.h"\r
107 #include "task.h"\r
108 #include "queue.h"\r
109 #include "timers.h"\r
110 \r
111 /* Microsemi drivers/libraries. */\r
112 #include "mss_gpio.h"\r
113 #include "mss_watchdog.h"\r
114 \r
115 \r
116 /* Priorities at which the tasks are created. */\r
117 #define mainQUEUE_RECEIVE_TASK_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
118 #define mainQUEUE_SEND_TASK_PRIORITY            ( tskIDLE_PRIORITY + 1 )\r
119 \r
120 /* The rate at which data is sent to the queue, specified in milliseconds, and\r
121 converted to ticks using the portTICK_RATE_MS constant. */\r
122 #define mainQUEUE_SEND_FREQUENCY_MS                     ( 200 / portTICK_RATE_MS )\r
123 \r
124 /* The number of items the queue can hold.  This is 1 as the receive task\r
125 will remove items as they are added, meaning the send task should always find\r
126 the queue empty. */\r
127 #define mainQUEUE_LENGTH                                        ( 1 )\r
128 \r
129 #define mainTASK_CONTROLLED_LED                         0x01UL\r
130 #define mainTIMER_CONTROLLED_LED                        0x02UL\r
131 /*-----------------------------------------------------------*/\r
132 \r
133 /*\r
134  * Setup the NVIC, LED outputs, and button inputs.\r
135  */\r
136 static void prvSetupHardware( void );\r
137 \r
138 /*\r
139  * The tasks as described in the comments at the top of this file.\r
140  */\r
141 static void prvQueueReceiveTask( void *pvParameters );\r
142 static void prvQueueSendTask( void *pvParameters );\r
143 \r
144 /*\r
145  * The LED timer callback function.  This does nothing but switch the red LED \r
146  * off.\r
147  */\r
148 static void vLEDTimerCallback( xTimerHandle xTimer );\r
149 \r
150 /*-----------------------------------------------------------*/\r
151 \r
152 /* The queue used by both tasks. */\r
153 static xQueueHandle xQueue = NULL;\r
154 \r
155 /* The LED software timer.  This uses vLEDTimerCallback() as its callback\r
156 function. */\r
157 static xTimerHandle xLEDTimer = NULL;\r
158 \r
159 volatile unsigned long ulGPIOState = 0UL;\r
160 \r
161 /*-----------------------------------------------------------*/\r
162 \r
163 int main(void)\r
164 {\r
165         /* Configure the NVIC, LED outputs and button inputs. */\r
166         prvSetupHardware();\r
167 \r
168         /* Create the queue. */\r
169         xQueue = xQueueCreate( mainQUEUE_LENGTH, sizeof( unsigned long ) );\r
170 \r
171         if( xQueue != NULL )\r
172         {\r
173                 /* Start the two tasks as described in the comments at the top of this\r
174                 file. */\r
175                 xTaskCreate( prvQueueReceiveTask, ( signed char * ) "Rx", configMINIMAL_STACK_SIZE, NULL, mainQUEUE_RECEIVE_TASK_PRIORITY, NULL );\r
176                 xTaskCreate( prvQueueSendTask, ( signed char * ) "TX", configMINIMAL_STACK_SIZE, NULL, mainQUEUE_SEND_TASK_PRIORITY, NULL );\r
177 \r
178                 /* Create the software timer that is responsible for turning off the LED \r
179                 if the button is not pushed within 5000ms, as described at the top of \r
180                 this file. */\r
181                 xLEDTimer = xTimerCreate(       ( const signed char * ) "LEDTimer", /* A text name, purely to help debugging. */\r
182                                                                         ( 5000 / portTICK_RATE_MS ),            /* The timer period, in this case 5000ms (5s). */\r
183                                                                         pdFALSE,                                                        /* This is a one shot timer, so xAutoReload is set to pdFALSE. */\r
184                                                                         ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
185                                                                         vLEDTimerCallback                                       /* The callback function that switches the LED off. */\r
186                                                                 );\r
187 \r
188                 /* Start the tasks and timer running. */\r
189                 vTaskStartScheduler();\r
190         }\r
191 \r
192         /* If all is well, the scheduler will now be running, and the following line\r
193         will never be reached.  If the following line does execute, then there was\r
194         insufficient FreeRTOS heap memory available for the idle and/or timer tasks\r
195         to be created.  See the memory management section on the FreeRTOS web site\r
196         for more details. */\r
197         for( ;; );\r
198 }\r
199 /*-----------------------------------------------------------*/\r
200 \r
201 static void vLEDTimerCallback( xTimerHandle xTimer )\r
202 {\r
203         /* The timer has expired - so no button pushes have occurred in the last\r
204         five seconds - turn the LED off.  NOTE - accessing the LED port should use\r
205         a critical section because it is accessed from multiple tasks, and the\r
206         button interrupt - in this trivial case, for simplicity, the critical\r
207         section is omitted. */\r
208         ulGPIOState |= mainTIMER_CONTROLLED_LED;\r
209         MSS_GPIO_set_outputs( ulGPIOState );\r
210 }\r
211 /*-----------------------------------------------------------*/\r
212 \r
213 /* The ISR executed when the user button is pushed. */\r
214 void GPIO8_IRQHandler( void )\r
215 {\r
216 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
217 \r
218         /* The button was pushed, so ensure the LED is on before resetting the\r
219         LED timer.  The LED timer will turn the LED off if the button is not\r
220         pushed within 5000ms. */\r
221         ulGPIOState &= ~mainTIMER_CONTROLLED_LED;\r
222         MSS_GPIO_set_outputs( ulGPIOState );\r
223 \r
224         /* This interrupt safe FreeRTOS function can be called from this interrupt\r
225         because the interrupt priority is below the\r
226         configMAX_SYSCALL_INTERRUPT_PRIORITY setting in FreeRTOSConfig.h. */\r
227         xTimerResetFromISR( xLEDTimer, &xHigherPriorityTaskWoken );\r
228 \r
229         /* Clear the interrupt before leaving. */\r
230     MSS_GPIO_clear_irq( MSS_GPIO_8 );\r
231 \r
232         /* If calling xTimerResetFromISR() caused a task (in this case the timer\r
233         service/daemon task) to unblock, and the unblocked task has a priority\r
234         higher than or equal to the task that was interrupted, then\r
235         xHigherPriorityTaskWoken will now be set to pdTRUE, and calling\r
236         portEND_SWITCHING_ISR() will ensure the unblocked task runs next. */\r
237         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
238 }\r
239 /*-----------------------------------------------------------*/\r
240 \r
241 static void prvQueueSendTask( void *pvParameters )\r
242 {\r
243 portTickType xNextWakeTime;\r
244 const unsigned long ulValueToSend = 100UL;\r
245 \r
246         /* Initialise xNextWakeTime - this only needs to be done once. */\r
247         xNextWakeTime = xTaskGetTickCount();\r
248 \r
249         for( ;; )\r
250         {\r
251                 /* Place this task in the blocked state until it is time to run again.\r
252                 The block time is specified in ticks, the constant used converts ticks\r
253                 to ms.  While in the Blocked state this task will not consume any CPU\r
254                 time. */\r
255                 vTaskDelayUntil( &xNextWakeTime, mainQUEUE_SEND_FREQUENCY_MS );\r
256 \r
257                 /* Send to the queue - causing the queue receive task to unblock and\r
258                 toggle an LED.  0 is used as the block time so the sending operation\r
259                 will not block - it shouldn't need to block as the queue should always\r
260                 be empty at this point in the code. */\r
261                 xQueueSend( xQueue, &ulValueToSend, 0 );\r
262         }\r
263 }\r
264 /*-----------------------------------------------------------*/\r
265 \r
266 static void prvQueueReceiveTask( void *pvParameters )\r
267 {\r
268 unsigned long ulReceivedValue;\r
269 \r
270         for( ;; )\r
271         {\r
272                 /* Wait until something arrives in the queue - this task will block\r
273                 indefinitely provided INCLUDE_vTaskSuspend is set to 1 in\r
274                 FreeRTOSConfig.h. */\r
275                 xQueueReceive( xQueue, &ulReceivedValue, portMAX_DELAY );\r
276 \r
277                 /*  To get here something must have been received from the queue, but\r
278                 is it the expected value?  If it is, toggle the green LED. */\r
279                 if( ulReceivedValue == 100UL )\r
280                 {\r
281                         /* NOTE - accessing the LED port should use a critical section\r
282                         because it is accessed from multiple tasks, and the button interrupt \r
283                         - in this trivial case, for simplicity, the critical section is \r
284                         omitted. */\r
285                         if( ( ulGPIOState & mainTASK_CONTROLLED_LED ) != 0 )\r
286                         {\r
287                                 ulGPIOState &= ~mainTASK_CONTROLLED_LED;\r
288                         }\r
289                         else\r
290                         {\r
291                                 ulGPIOState |= mainTASK_CONTROLLED_LED;\r
292                         }\r
293                         MSS_GPIO_set_outputs( ulGPIOState );\r
294                 }\r
295         }\r
296 }\r
297 /*-----------------------------------------------------------*/\r
298 \r
299 static void prvSetupHardware( void )\r
300 {\r
301         /* Disable the Watch Dog Timer */\r
302         MSS_WD_disable( );\r
303 \r
304         /* Initialise the GPIO */\r
305         MSS_GPIO_init();\r
306 \r
307         /* Set up GPIO for the LEDs. */\r
308     MSS_GPIO_config( MSS_GPIO_0 , MSS_GPIO_OUTPUT_MODE );\r
309     MSS_GPIO_config( MSS_GPIO_1 , MSS_GPIO_OUTPUT_MODE );\r
310     MSS_GPIO_config( MSS_GPIO_2 , MSS_GPIO_OUTPUT_MODE );\r
311     MSS_GPIO_config( MSS_GPIO_3 , MSS_GPIO_OUTPUT_MODE );\r
312     MSS_GPIO_config( MSS_GPIO_4 , MSS_GPIO_OUTPUT_MODE );\r
313     MSS_GPIO_config( MSS_GPIO_5 , MSS_GPIO_OUTPUT_MODE );\r
314     MSS_GPIO_config( MSS_GPIO_6 , MSS_GPIO_OUTPUT_MODE );\r
315     MSS_GPIO_config( MSS_GPIO_7 , MSS_GPIO_OUTPUT_MODE );\r
316 \r
317     /* All LEDs start off. */\r
318     ulGPIOState = 0xffffffffUL;\r
319     MSS_GPIO_set_outputs( ulGPIOState );\r
320 \r
321         /* Setup the GPIO and the NVIC for the switch used in this simple demo. */\r
322         NVIC_SetPriority( GPIO8_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );\r
323     NVIC_EnableIRQ( GPIO8_IRQn );\r
324     MSS_GPIO_config( MSS_GPIO_8, MSS_GPIO_INPUT_MODE | MSS_GPIO_IRQ_EDGE_NEGATIVE );\r
325     MSS_GPIO_enable_irq( MSS_GPIO_8 );\r
326 }\r
327 /*-----------------------------------------------------------*/\r
328 \r
329 void vApplicationMallocFailedHook( void )\r
330 {\r
331         /* Called if a call to pvPortMalloc() fails because there is insufficient\r
332         free memory available in the FreeRTOS heap.  pvPortMalloc() is called\r
333         internally by FreeRTOS API functions that create tasks, queues, software \r
334         timers, and semaphores.  The size of the FreeRTOS heap is set by the\r
335         configTOTAL_HEAP_SIZE configuration constant in FreeRTOSConfig.h. */\r
336         for( ;; );\r
337 }\r
338 /*-----------------------------------------------------------*/\r
339 \r
340 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )\r
341 {\r
342         ( void ) pcTaskName;\r
343         ( void ) pxTask;\r
344 \r
345         /* Run time stack overflow checking is performed if\r
346         configconfigCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
347         function is called if a stack overflow is detected. */\r
348         for( ;; );\r
349 }\r
350 /*-----------------------------------------------------------*/\r
351 \r
352 void vApplicationIdleHook( void )\r
353 {\r
354 volatile size_t xFreeStackSpace;\r
355 \r
356         /* This function is called on each cycle of the idle task.  In this case it\r
357         does nothing useful, other than report the amout of FreeRTOS heap that \r
358         remains unallocated. */\r
359         xFreeStackSpace = xPortGetFreeHeapSize();\r
360 \r
361         if( xFreeStackSpace > 100 )\r
362         {\r
363                 /* By now, the kernel has allocated everything it is going to, so\r
364                 if there is a lot of heap remaining unallocated then\r
365                 the value of configTOTAL_HEAP_SIZE in FreeRTOSConfig.h can be\r
366                 reduced accordingly. */\r
367         }\r
368 }\r