2 FreeRTOS V8.2.0rc1 - Copyright (C) 2014 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 This file is part of the FreeRTOS distribution.
\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
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
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
25 ***************************************************************************
\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
30 * http://www.FreeRTOS.org/FAQHelp.html *
\r
32 ***************************************************************************
\r
34 ***************************************************************************
\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
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
46 ***************************************************************************
\r
48 ***************************************************************************
\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
62 ***************************************************************************
\r
64 ***************************************************************************
\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
73 ***************************************************************************
\r
75 http://www.FreeRTOS.org - Documentation, books, training, latest versions,
\r
76 license and Real Time Engineers Ltd. contact details.
\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
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
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
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
98 * Creates all the demo application tasks, then starts the scheduler. The WEB
\r
99 * documentation provides more details of the standard demo application tasks
\r
100 * (which just exist to test the kernel port and provide an example of how to use
\r
101 * each FreeRTOS API function).
\r
103 * In addition to the standard demo tasks, the following tasks and tests are
\r
104 * defined and/or created within this file:
\r
106 * "Check" hook - This only executes fully every five seconds from the tick
\r
107 * hook. Its main function is to check that all the standard demo tasks are
\r
108 * still operational. The status can be viewed using on the Task Stats page
\r
109 * served by the WEB server.
\r
111 * "uIP" task - This is the task that handles the uIP stack. All TCP/IP
\r
112 * processing is performed in this task.
\r
114 * "USB" task - Enumerates the USB device as a CDC class, then echoes back all
\r
115 * received characters with a configurable offset (for example, if the offset
\r
116 * is 1 and 'A' is received then 'B' will be sent back). A dumb terminal such
\r
117 * as Hyperterminal can be used to talk to the USB task.
\r
120 /* Scheduler includes. */
\r
121 #include "FreeRTOS.h"
\r
124 /* Demo app includes. */
\r
125 #include "BlockQ.h"
\r
126 #include "integer.h"
\r
127 #include "blocktim.h"
\r
129 #include "partest.h"
\r
130 #include "semtest.h"
\r
132 #include "GenQTest.h"
\r
134 #include "recmutex.h"
\r
136 /*-----------------------------------------------------------*/
\r
138 /* The time between cycles of the 'check' functionality (defined within the
\r
140 #define mainCHECK_DELAY ( ( TickType_t ) 5000 / portTICK_PERIOD_MS )
\r
142 /* The toggle rate for the LED. */
\r
143 #define mainLED_TOGGLE_RATE ( ( TickType_t ) 1000 / portTICK_PERIOD_MS )
\r
145 /* Task priorities. */
\r
146 #define mainQUEUE_POLL_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
147 #define mainSEM_TEST_PRIORITY ( tskIDLE_PRIORITY + 1 )
\r
148 #define mainBLOCK_Q_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
149 #define mainUIP_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
\r
150 #define mainFLASH_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
151 #define mainINTEGER_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
152 #define mainGEN_QUEUE_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
154 /* The WEB server has a larger stack as it utilises stack hungry string
\r
155 handling library calls. */
\r
156 #define mainBASIC_WEB_STACK_SIZE ( configMINIMAL_STACK_SIZE * 4 )
\r
158 /* The message displayed by the WEB server when all tasks are executing
\r
159 without an error being reported. */
\r
160 #define mainPASS_STATUS_MESSAGE "All tasks are executing without error."
\r
162 /*-----------------------------------------------------------*/
\r
165 * Configure the hardware for the demo.
\r
167 static void prvSetupHardware( void );
\r
170 * The task that handles the uIP stack. All TCP/IP processing is performed in
\r
173 extern void vuIP_Task( void *pvParameters );
\r
176 * The task that handles the USB stack.
\r
178 extern void vUSBTask( void *pvParameters );
\r
181 * Very basic task that does nothing but use delays to flash an LED.
\r
183 static void prvFlashTask( void *pvParameters );
\r
186 * Simply returns the current status message for display on served WEB pages.
\r
188 char *pcGetTaskStatusMessage( void );
\r
190 /*-----------------------------------------------------------*/
\r
192 /* Holds the status message displayed by the WEB server. */
\r
193 static char *pcStatusMessage = mainPASS_STATUS_MESSAGE;
\r
195 /*-----------------------------------------------------------*/
\r
199 /* Configure the hardware for use by this demo. */
\r
200 prvSetupHardware();
\r
202 /* Start the standard demo tasks. These are just here to exercise the
\r
203 kernel port and provide examples of how the FreeRTOS API can be used. */
\r
204 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
\r
205 vCreateBlockTimeTasks();
\r
206 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
\r
207 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
\r
208 vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );
\r
209 vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
\r
210 vStartQueuePeekTasks();
\r
211 vStartRecursiveMutexTasks();
\r
213 /* Create the simple LED flash task. */
\r
214 xTaskCreate( prvFlashTask, "Flash", configMINIMAL_STACK_SIZE, ( void * ) NULL, mainFLASH_TASK_PRIORITY, NULL );
\r
216 /* Create the USB task. */
\r
217 xTaskCreate( vUSBTask, "USB", configMINIMAL_STACK_SIZE, ( void * ) NULL, tskIDLE_PRIORITY, NULL );
\r
219 /* Create the uIP task. The WEB server runs in this task. */
\r
220 xTaskCreate( vuIP_Task, "uIP", mainBASIC_WEB_STACK_SIZE, ( void * ) NULL, mainUIP_TASK_PRIORITY, NULL );
\r
222 /* Start the scheduler. */
\r
223 vTaskStartScheduler();
\r
225 /* Will only get here if there was insufficient memory to create the idle
\r
226 task. The idle task is created within vTaskStartScheduler(). */
\r
229 /*-----------------------------------------------------------*/
\r
231 void vApplicationTickHook( void )
\r
233 static unsigned long ulTicksSinceLastDisplay = 0;
\r
235 /* Called from every tick interrupt as described in the comments at the top
\r
238 Have enough ticks passed to make it time to perform our health status
\r
240 ulTicksSinceLastDisplay++;
\r
241 if( ulTicksSinceLastDisplay >= mainCHECK_DELAY )
\r
243 /* Reset the counter so these checks run again in mainCHECK_DELAY
\r
245 ulTicksSinceLastDisplay = 0;
\r
247 /* Has an error been found in any task? */
\r
248 if( xAreGenericQueueTasksStillRunning() != pdTRUE )
\r
250 pcStatusMessage = "An error has been detected in the Generic Queue test/demo.";
\r
252 else if( xAreQueuePeekTasksStillRunning() != pdTRUE )
\r
254 pcStatusMessage = "An error has been detected in the Peek Queue test/demo.";
\r
256 else if( xAreBlockingQueuesStillRunning() != pdTRUE )
\r
258 pcStatusMessage = "An error has been detected in the Block Queue test/demo.";
\r
260 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )
\r
262 pcStatusMessage = "An error has been detected in the Block Time test/demo.";
\r
264 else if( xAreSemaphoreTasksStillRunning() != pdTRUE )
\r
266 pcStatusMessage = "An error has been detected in the Semaphore test/demo.";
\r
268 else if( xArePollingQueuesStillRunning() != pdTRUE )
\r
270 pcStatusMessage = "An error has been detected in the Poll Queue test/demo.";
\r
272 else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )
\r
274 pcStatusMessage = "An error has been detected in the Int Math test/demo.";
\r
276 else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )
\r
278 pcStatusMessage = "An error has been detected in the Mutex test/demo.";
\r
282 /*-----------------------------------------------------------*/
\r
284 static void prvFlashTask( void *pvParameters )
\r
286 TickType_t xLastFlashTime;
\r
288 /* We need to initialise xLastFlashTime prior to the first call to
\r
289 vTaskDelayUntil(). */
\r
290 xLastFlashTime = xTaskGetTickCount();
\r
294 /* Simply toggle the LED between delays. */
\r
295 vTaskDelayUntil( &xLastFlashTime, mainLED_TOGGLE_RATE );
\r
296 vParTestToggleLED( 0 );
\r
299 /*-----------------------------------------------------------*/
\r
301 char *pcGetTaskStatusMessage( void )
\r
303 /* Not bothered about a critical section here. */
\r
304 return pcStatusMessage;
\r
306 /*-----------------------------------------------------------*/
\r
308 void prvSetupHardware( void )
\r
310 /* Disable peripherals power. */
\r
313 /* Enable GPIO power. */
\r
314 SC->PCONP = PCONP_PCGPIO;
\r
316 /* Disable TPIU. */
\r
317 PINCON->PINSEL10 = 0;
\r
319 if ( SC->PLL0STAT & ( 1 << 25 ) )
\r
321 /* Enable PLL, disconnected. */
\r
323 SC->PLL0FEED = PLLFEED_FEED1;
\r
324 SC->PLL0FEED = PLLFEED_FEED2;
\r
327 /* Disable PLL, disconnected. */
\r
329 SC->PLL0FEED = PLLFEED_FEED1;
\r
330 SC->PLL0FEED = PLLFEED_FEED2;
\r
332 /* Enable main OSC. */
\r
334 while( !( SC->SCS & 0x40 ) );
\r
336 /* select main OSC, 12MHz, as the PLL clock source. */
\r
337 SC->CLKSRCSEL = 0x1;
\r
339 SC->PLL0CFG = 0x20031;
\r
340 SC->PLL0FEED = PLLFEED_FEED1;
\r
341 SC->PLL0FEED = PLLFEED_FEED2;
\r
343 /* Enable PLL, disconnected. */
\r
345 SC->PLL0FEED = PLLFEED_FEED1;
\r
346 SC->PLL0FEED = PLLFEED_FEED2;
\r
348 /* Set clock divider. */
\r
349 SC->CCLKCFG = 0x03;
\r
351 /* Configure flash accelerator. */
\r
352 SC->FLASHCFG = 0x403a;
\r
354 /* Check lock bit status. */
\r
355 while( ( ( SC->PLL0STAT & ( 1 << 26 ) ) == 0 ) );
\r
357 /* Enable and connect. */
\r
359 SC->PLL0FEED = PLLFEED_FEED1;
\r
360 SC->PLL0FEED = PLLFEED_FEED2;
\r
361 while( ( ( SC->PLL0STAT & ( 1 << 25 ) ) == 0 ) );
\r
366 /* Configure the clock for the USB. */
\r
368 if( SC->PLL1STAT & ( 1 << 9 ) )
\r
370 /* Enable PLL, disconnected. */
\r
372 SC->PLL1FEED = PLLFEED_FEED1;
\r
373 SC->PLL1FEED = PLLFEED_FEED2;
\r
376 /* Disable PLL, disconnected. */
\r
378 SC->PLL1FEED = PLLFEED_FEED1;
\r
379 SC->PLL1FEED = PLLFEED_FEED2;
\r
381 SC->PLL1CFG = 0x23;
\r
382 SC->PLL1FEED = PLLFEED_FEED1;
\r
383 SC->PLL1FEED = PLLFEED_FEED2;
\r
385 /* Enable PLL, disconnected. */
\r
387 SC->PLL1FEED = PLLFEED_FEED1;
\r
388 SC->PLL1FEED = PLLFEED_FEED2;
\r
389 while( ( ( SC->PLL1STAT & ( 1 << 10 ) ) == 0 ) );
\r
391 /* Enable and connect. */
\r
393 SC->PLL1FEED = PLLFEED_FEED1;
\r
394 SC->PLL1FEED = PLLFEED_FEED2;
\r
395 while( ( ( SC->PLL1STAT & ( 1 << 9 ) ) == 0 ) );
\r
397 /* Setup the peripheral bus to be the same as the PLL output (64 MHz). */
\r
398 SC->PCLKSEL0 = 0x05555555;
\r
400 /* Configure the LEDs. */
\r
401 vParTestInitialise();
\r
403 /*-----------------------------------------------------------*/
\r
405 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )
\r
407 /* This function will get called if a task overflows its stack. */
\r
410 ( void ) pcTaskName;
\r
414 /*-----------------------------------------------------------*/
\r
416 void vConfigureTimerForRunTimeStats( void )
\r
418 const unsigned long TCR_COUNT_RESET = 2, CTCR_CTM_TIMER = 0x00, TCR_COUNT_ENABLE = 0x01;
\r
420 /* This function configures a timer that is used as the time base when
\r
421 collecting run time statistical information - basically the percentage
\r
422 of CPU time that each task is utilising. It is called automatically when
\r
423 the scheduler is started (assuming configGENERATE_RUN_TIME_STATS is set
\r
426 /* Power up and feed the timer. */
\r
427 SC->PCONP |= 0x02UL;
\r
428 SC->PCLKSEL0 = (SC->PCLKSEL0 & (~(0x3<<2))) | (0x01 << 2);
\r
430 /* Reset Timer 0 */
\r
431 TIM0->TCR = TCR_COUNT_RESET;
\r
433 /* Just count up. */
\r
434 TIM0->CTCR = CTCR_CTM_TIMER;
\r
436 /* Prescale to a frequency that is good enough to get a decent resolution,
\r
437 but not too fast so as to overflow all the time. */
\r
438 TIM0->PR = ( configCPU_CLOCK_HZ / 10000UL ) - 1UL;
\r
440 /* Start the counter. */
\r
441 TIM0->TCR = TCR_COUNT_ENABLE;
\r
443 /*-----------------------------------------------------------*/
\r