]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/PIC32MX_MPLAB/main_full.c
Prepare for V7.3.0 release.
[freertos] / FreeRTOS / Demo / PIC32MX_MPLAB / main_full.c
1 /*\r
2     FreeRTOS V7.3.0 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT \r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32     >>>NOTE<<< The modification to the GPL is included to allow you to\r
33     distribute a combined work that includes FreeRTOS without being obliged to\r
34     provide the source code for proprietary components outside of the FreeRTOS\r
35     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
36     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
37     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
38     more details. You should have received a copy of the GNU General Public\r
39     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
40     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
41     by writing to Richard Barry, contact details for whom are available on the\r
42     FreeRTOS WEB site.\r
43 \r
44     1 tab == 4 spaces!\r
45     \r
46     ***************************************************************************\r
47      *                                                                       *\r
48      *    Having a problem?  Start by reading the FAQ "My application does   *\r
49      *    not run, what could be wrong?"                                     *\r
50      *                                                                       *\r
51      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
52      *                                                                       *\r
53     ***************************************************************************\r
54 \r
55     \r
56     http://www.FreeRTOS.org - Documentation, training, latest versions, license \r
57     and contact details.  \r
58     \r
59     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
60     including FreeRTOS+Trace - an indispensable productivity tool.\r
61 \r
62     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
63     the code with commercial support, indemnification, and middleware, under \r
64     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
65     provide a safety engineered and independently SIL3 certified version under \r
66     the SafeRTOS brand: http://www.SafeRTOS.com.\r
67 */\r
68 \r
69 /******************************************************************************\r
70  * NOTE 1:  This project provides two demo applications.  A simple blinky style\r
71  * project, and a more comprehensive test and demo application.  The\r
72  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting in main.c is used to select\r
73  * between the two.  See the notes on using mainCREATE_SIMPLE_BLINKY_DEMO_ONLY\r
74  * in main.c.  This file implements the comprehensive test and demo version.\r
75  *\r
76  * NOTE 2:  This file only contains the source code that is specific to the\r
77  * full demo.  Generic functions, such FreeRTOS hook functions, and functions\r
78  * required to configure the hardware, are defined in main.c.\r
79  ******************************************************************************\r
80  *\r
81  * main_full() creates all the demo application tasks and software timers, then \r
82  * starts the scheduler.  The WEB documentation provides more details of the \r
83  * standard demo application tasks.  In addition to the standard demo tasks, the \r
84  * following tasks and tests are defined and/or created within this file:\r
85  *\r
86  * "LCD" task - the LCD task is a 'gatekeeper' task.  It is the only task that\r
87  * is permitted to access the display directly.  Other tasks wishing to write a\r
88  * message to the LCD send the message on a queue to the LCD task instead of\r
89  * accessing the LCD themselves.  The LCD task just blocks on the queue waiting\r
90  * for messages - waking and displaying the messages as they arrive.\r
91  *\r
92  * "Check" timer - The check software timer period is initially set to three\r
93  * seconds.  The callback function associated with the check software timer\r
94  * checks that all the standard demo tasks, and the register check tasks, are\r
95  * not only still executing, but are executing without reporting any errors.  If\r
96  * the check software timer discovers that a task has either stalled, or\r
97  * reported an error, then it changes its own execution period from the initial\r
98  * three seconds, to just 200ms.  The check software timer callback function\r
99  * also writes a status message to the LCD (via the LCD task).  If all the demo \r
100  * tasks are executing with their expected behaviour then the check task writes \r
101  * a count of the number of times the high frequency interrupt has incremented\r
102  * ulHighFrequencyTimerInterrupts - which is one in every 20,000 interrupts.\r
103  *\r
104  * "Register test" tasks - These tasks are used in part to test the kernel port.\r
105  * They set each processor register to a known value, then check that the \r
106  * register still contains that value.  Each of the tasks sets the registers\r
107  * to different values, and will get swapping in and out between setting and \r
108  * then subsequently checking the register values.  Discovery of an incorrect\r
109  * value would be indicative of an error in the task switching mechanism.\r
110  *\r
111  * By way of demonstration, the demo application defines \r
112  * configMAX_SYSCALL_INTERRUPT_PRIORITY to be 3, configKERNEL_INTERRUPT_PRIORITY \r
113  * to be 1, and all other interrupts as follows:\r
114  *\r
115  *      + The UART is allocated a priority of 2. This means it can interrupt the \r
116  *    RTOS tick, and can also safely use queues.\r
117  *  + Two timers are configured to generate interrupts just to test the nesting \r
118  *    and queue access mechanisms. These timers are allocated priorities 2 and 3 \r
119  *    respectively. Even though they both access the same two queues, the \r
120  *    priority 3 interrupt can safely interrupt the priority 2 interrupt. Both \r
121  *    can interrupt the RTOS tick.\r
122  *  + Finally a high frequency timer interrupt is configured to use priority 4 - \r
123  *    therefore kernel activity will never prevent the high frequency timer from \r
124  *    executing immediately that the interrupt is raised (within the limitations \r
125  *    of the hardware itself). It would not be safe to access a queue from this \r
126  *    interrupt as it is above configMAX_SYSCALL_INTERRUPT_PRIORITY. \r
127  *\r
128  * See the online documentation for this demo for more information on interrupt\r
129  * usage.\r
130  */\r
131 \r
132 /* Standard includes. */\r
133 #include <stdio.h>\r
134 \r
135 /* Scheduler includes. */\r
136 #include "FreeRTOS.h"\r
137 #include "task.h"\r
138 #include "queue.h"\r
139 #include "timers.h"\r
140 \r
141 /* Demo application includes. */\r
142 #include "partest.h"\r
143 #include "blocktim.h"\r
144 #include "flash_timer.h"\r
145 #include "semtest.h"\r
146 #include "GenQTest.h"\r
147 #include "QPeek.h"\r
148 #include "lcd.h"\r
149 #include "comtest2.h"\r
150 #include "timertest.h"\r
151 #include "IntQueue.h"\r
152 \r
153 /*-----------------------------------------------------------*/\r
154 \r
155 /* The period after which the check timer will expire, in ms, provided no errors\r
156 have been reported by any of the standard demo tasks.  ms are converted to the\r
157 equivalent in ticks using the portTICK_RATE_MS constant. */\r
158 #define mainCHECK_TIMER_PERIOD_MS                       ( 3000UL / portTICK_RATE_MS )\r
159 \r
160 /* The period at which the check timer will expire, in ms, if an error has been\r
161 reported in one of the standard demo tasks.  ms are converted to the equivalent\r
162 in ticks using the portTICK_RATE_MS constant. */\r
163 #define mainERROR_CHECK_TIMER_PERIOD_MS         ( 200UL / portTICK_RATE_MS )\r
164 \r
165 /* The priorities of the various demo application tasks. */\r
166 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
167 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
168 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 2 )\r
169 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
170 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
171 \r
172 /* The LED controlled by the 'check' software timer. */\r
173 #define mainCHECK_LED                                           ( 7 )\r
174 \r
175 /* The LED used by the comtest tasks.  mainCOM_TEST_LED + 1 is also used.\r
176 See the comtest.c file for more information. */\r
177 #define mainCOM_TEST_LED                                        ( 4 )\r
178 \r
179 /* Baud rate used by the comtest tasks. */\r
180 #define mainCOM_TEST_BAUD_RATE                          ( 115200 )\r
181 \r
182 /* Misc. */\r
183 #define mainDONT_BLOCK                                          ( 0 )\r
184 \r
185 /* Dimension the buffer used to hold the value of the high frequency timer \r
186 count when it is converted to a string. */\r
187 #define mainMAX_STRING_LENGTH                           ( 20 )\r
188 \r
189 /* The frequency at which the "fast interrupt test" interrupt will occur. */\r
190 #define mainTEST_INTERRUPT_FREQUENCY            ( 20000 )\r
191 \r
192 /* The number of timer clocks expected to occur between each "fast interrupt \r
193 test" interrupt. */\r
194 #define mainEXPECTED_CLOCKS_BETWEEN_INTERRUPTS ( ( configCPU_CLOCK_HZ >> 1 ) / mainTEST_INTERRUPT_FREQUENCY )\r
195 \r
196 /* The number of nano seconds between each core clock. */\r
197 #define mainNS_PER_CLOCK ( ( unsigned long ) ( ( 1.0 / ( double ) ( configCPU_CLOCK_HZ >> 1 ) ) * 1000000000.0 ) )\r
198 \r
199 /* The number of LEDs that should be controlled by the flash software timer\r
200 standard demo. */\r
201 #define mainNUM_FLASH_TIMER_LEDS                        ( 3 )\r
202 \r
203 /*-----------------------------------------------------------*/\r
204 \r
205 /*\r
206  * The check timer callback function, as described at the top of this file.\r
207  */\r
208 static void prvCheckTimerCallback( xTimerHandle xTimer );\r
209 \r
210 /*\r
211  * It is important to ensure the high frequency timer test does not start before\r
212  * the kernel.  It is therefore started from inside a software timer callback\r
213  * function, which will not execute until the timer service/daemon task is\r
214  * executing.  A one-shot timer is used, so the callback function will only\r
215  * execute once (unless it is manually reset/restarted).\r
216  */\r
217 static void prvSetupHighFrequencyTimerTest( xTimerHandle xTimer );\r
218 \r
219 /*\r
220  * Tasks that test the context switch mechanism by filling the processor \r
221  * registers with known values, then checking that the values contained\r
222  * within the registers is as expected.  The tasks are likely to get swapped\r
223  * in and out between setting the register values and checking the register\r
224  * values. \r
225  */\r
226 static void prvRegTestTask1( void *pvParameters );\r
227 static void prvRegTestTask2( void *pvParameters );\r
228 \r
229 /*-----------------------------------------------------------*/\r
230 \r
231 /* The queue used to send messages to the LCD task. */\r
232 static xQueueHandle xLCDQueue;\r
233 \r
234 /* Flag used by prvRegTestTask1() and prvRegTestTask2() to indicate their status\r
235 (pass/fail). */\r
236 volatile unsigned long ulStatus1 = pdPASS;\r
237 \r
238 /* Variables incremented by prvRegTestTask1() and prvRegTestTask2() respectively on \r
239 each iteration of their function.  This is used to detect either task stopping\r
240 their execution.. */\r
241 volatile unsigned long ulRegTest1Cycles = 0, ulRegTest2Cycles = 0;\r
242 \r
243 /*-----------------------------------------------------------*/\r
244 \r
245 /*\r
246  * Create the demo tasks then start the scheduler.\r
247  */\r
248 int main_full( void )\r
249 {\r
250 xTimerHandle xTimer = NULL;\r
251 \r
252         /* Create the LCD task - this returns the queue to use when writing \r
253         messages to the LCD. */\r
254         xLCDQueue = xStartLCDTask();\r
255 \r
256         /* Create all the other standard demo tasks. */\r
257         vStartLEDFlashTimers( mainNUM_FLASH_TIMER_LEDS );\r
258     vCreateBlockTimeTasks();\r
259     vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
260     vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
261     vStartQueuePeekTasks();\r
262         vStartInterruptQueueTasks();\r
263 \r
264         /* Create the tasks defined within this file. */\r
265         xTaskCreate( prvRegTestTask1, ( const signed char * const ) "Reg1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
266         xTaskCreate( prvRegTestTask2, ( const signed char * const ) "Reg2", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
267 \r
268     /* The PIC32MX795 uses an 8 deep fifo where TX interrupts are asserted \r
269         whilst the TX buffer is empty.  This causes an issue with the test driver so \r
270         it is not used in this demo */\r
271         #if !defined(__32MX795F512L__)\r
272                 vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
273         #endif  \r
274         \r
275         /* Create the software timer that performs the 'check' functionality, as \r
276         described at the top of this file. */\r
277         xTimer = xTimerCreate(  ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */\r
278                                                         ( mainCHECK_TIMER_PERIOD_MS ),          /* The timer period, in this case 3000ms (3s). */\r
279                                                         pdTRUE,                                                         /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
280                                                         ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
281                                                         prvCheckTimerCallback                           /* The callback function that inspects the status of all the other tasks. */\r
282                                                 );      \r
283         \r
284         if( xTimer != NULL )\r
285         {\r
286                 xTimerStart( xTimer, mainDONT_BLOCK );\r
287         }\r
288         \r
289         /* A software timer is also used to start the high frequency timer test.\r
290         This is to ensure the test does not start before the kernel.  This time a\r
291         one shot software timer is used. */\r
292         xTimer = xTimerCreate( ( const signed char * ) "HighHzTimerSetup", 1, pdFALSE, ( void * ) 0, prvSetupHighFrequencyTimerTest );\r
293         if( xTimer != NULL )\r
294         {\r
295                 xTimerStart( xTimer, mainDONT_BLOCK );\r
296         }\r
297 \r
298         /* Finally start the scheduler. */\r
299         vTaskStartScheduler();\r
300 \r
301         /* If all is well, the scheduler will now be running, and the following line\r
302         will never be reached.  If the following line does execute, then there was\r
303         insufficient FreeRTOS heap memory available for the idle and/or timer tasks\r
304         to be created.  See the memory management section on the FreeRTOS web site\r
305         for more details. */\r
306         for( ;; );\r
307 }\r
308 /*-----------------------------------------------------------*/\r
309 \r
310 static void prvRegTestTask1( void *pvParameters )\r
311 {\r
312 extern void vRegTest1( volatile unsigned long * );\r
313 \r
314         for( ;; )\r
315         {\r
316                 /* Perform the register test function. */\r
317                 vRegTest1( &ulStatus1 );\r
318 \r
319                 /* Increment the counter so the check task knows we are still \r
320                 running. */\r
321                 ulRegTest1Cycles++;\r
322         }\r
323 }\r
324 /*-----------------------------------------------------------*/\r
325 \r
326 static void prvRegTestTask2( void *pvParameters )\r
327 {\r
328 extern void vRegTest2( volatile unsigned long * );\r
329 \r
330         for( ;; )\r
331         {\r
332                 /* Perform the register test function. */\r
333                 vRegTest2( &ulStatus1 );\r
334 \r
335                 /* Increment the counter so the check task knows we are still\r
336                 running. */\r
337                 ulRegTest2Cycles++;\r
338         }\r
339 }\r
340 /*-----------------------------------------------------------*/\r
341 \r
342 static void prvCheckTimerCallback( xTimerHandle xTimer )\r
343 {\r
344 static long lChangedTimerPeriodAlready = pdFALSE;\r
345 static unsigned long ulLastRegTest1Value = 0, ulLastRegTest2Value = 0;\r
346 \r
347 /* Buffer into which the high frequency timer count is written as a string. */\r
348 static char cStringBuffer[ mainMAX_STRING_LENGTH ];\r
349 \r
350 /* The count of the high frequency timer interrupts. */\r
351 extern unsigned long ulHighFrequencyTimerInterrupts;\r
352 static xLCDMessage xMessage = { ( 200 / portTICK_RATE_MS ), cStringBuffer };\r
353 \r
354         /* Has either register check 1 or 2 task discovered an error? */\r
355         if( ulStatus1 != pdPASS )\r
356         {\r
357                 xMessage.pcMessage = "Error: Reg test1";\r
358         }\r
359 \r
360         /* Check that the register test 1 task is still running. */\r
361         if( ulLastRegTest1Value == ulRegTest1Cycles )\r
362         {\r
363                 xMessage.pcMessage = "Error: Reg test2";\r
364         }\r
365         ulLastRegTest1Value = ulRegTest1Cycles;\r
366 \r
367         \r
368         /* Check that the register test 2 task is still running. */\r
369         if( ulLastRegTest2Value == ulRegTest2Cycles )\r
370         {\r
371                 xMessage.pcMessage = "Error: Reg test3";\r
372         }\r
373         ulLastRegTest2Value = ulRegTest2Cycles;\r
374         \r
375 \r
376         /* Have any of the standard demo tasks detected an error in their \r
377         operation? */\r
378         if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
379         {\r
380                 xMessage.pcMessage = "Error: Gen Q";\r
381         }\r
382         else if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
383         {\r
384                 xMessage.pcMessage = "Error: Q Peek";\r
385         }\r
386         else if( xAreComTestTasksStillRunning() != pdTRUE )\r
387         {\r
388                 xMessage.pcMessage = "Error: COM test";\r
389         }\r
390         else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
391         {\r
392                 xMessage.pcMessage = "Error: Blck time";\r
393         }\r
394         else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
395         {\r
396                 xMessage.pcMessage = "Error: Sem test";\r
397         }\r
398         else if( xAreIntQueueTasksStillRunning() != pdTRUE )\r
399         {\r
400                 xMessage.pcMessage = "Error: Int queue";\r
401         }\r
402 \r
403         if( xMessage.pcMessage != cStringBuffer )\r
404         {\r
405                 /* An error string has been logged.  If the timer period has not yet\r
406                 been changed it should be changed now.  Increasing the frequency of the\r
407                 LED gives visual feedback of the error status (although it is written\r
408                 to the LCD too!). */\r
409                 if( lChangedTimerPeriodAlready == pdFALSE )\r
410                 {\r
411                         lChangedTimerPeriodAlready = pdTRUE;\r
412                         \r
413                         /* This call to xTimerChangePeriod() uses a zero block time.\r
414                         Functions called from inside of a timer callback function must\r
415                         *never* attempt to block as to do so could impact other software\r
416                         timers. */\r
417                         xTimerChangePeriod( xTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );\r
418                 }               \r
419         }\r
420         else\r
421         {\r
422                 /* Write the ulHighFrequencyTimerInterrupts value to the string \r
423                 buffer.  It will only be displayed if no errors have been detected. */\r
424                 sprintf( cStringBuffer, "Pass %u", ( unsigned int ) ulHighFrequencyTimerInterrupts );\r
425         }\r
426 \r
427         /* Send the status message to the LCD task for display on the LCD.  This is \r
428         a timer callback function, so the queue send function *must not* block. */\r
429         xQueueSend( xLCDQueue, &xMessage, mainDONT_BLOCK );\r
430         vParTestToggleLED( mainCHECK_LED );     \r
431 }\r
432 /*-----------------------------------------------------------*/\r
433 \r
434 static void prvSetupHighFrequencyTimerTest( xTimerHandle xTimer )\r
435 {\r
436         /* Setup the high frequency, high priority, timer test.  It is setup in this\r
437         software timer callback to ensure it does not start before the kernel does.\r
438         This is a one shot timer - so the setup routine will only be executed once. */\r
439         vSetupTimerTest( mainTEST_INTERRUPT_FREQUENCY );        \r
440 }\r
441 \r