]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/WIN32-MingW/main.c
+ New feature added: Task notifications.
[freertos] / FreeRTOS / Demo / WIN32-MingW / 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  * This project provides two demo applications.  A simple blinky style project,\r
68  * and a more comprehensive test and demo application.  The\r
69  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is used to select between the two.\r
70  * The simply blinky demo is implemented and described in main_blinky.c.  The\r
71  * more comprehensive test and demo application is implemented and described in\r
72  * main_full.c.\r
73  *\r
74  * This file implements the code that is not demo specific, including the\r
75  * hardware setup and FreeRTOS hook functions.\r
76  *\r
77  *******************************************************************************\r
78  * -NOTE- The Win32 port is a simulation (or is that emulation?) only!  Do not\r
79  * expect to get real time behaviour from the Win32 port or this demo\r
80  * application.  It is provided as a convenient development and demonstration\r
81  * test bed only.  This was tested using Windows XP on a dual core laptop.\r
82  *\r
83  * Windows will not be running the FreeRTOS simulator threads continuously, so\r
84  * the timing information in the FreeRTOS+Trace logs have no meaningful units.\r
85  * See the documentation page for the Windows simulator for an explanation of\r
86  * the slow timing:\r
87  * http://www.freertos.org/FreeRTOS-Windows-Simulator-Emulator-for-Visual-Studio-and-Eclipse-MingW.html\r
88  * - READ THE WEB DOCUMENTATION FOR THIS PORT FOR MORE INFORMATION ON USING IT -\r
89  *******************************************************************************\r
90  *\r
91  */\r
92 \r
93 /* Standard includes. */\r
94 #include <stdio.h>\r
95 #include <stdlib.h>\r
96 #include <conio.h>\r
97 \r
98 /* FreeRTOS kernel includes. */\r
99 #include "FreeRTOS.h"\r
100 #include "task.h"\r
101 \r
102 /* This project provides two demo applications.  A simple blinky style project,\r
103 and a more comprehensive test and demo application.  The\r
104 mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is used to select between the two.\r
105 The simply blinky demo is implemented and described in main_blinky.c.  The more\r
106 comprehensive test and demo application is implemented and described in\r
107 main_full.c. */\r
108 #define mainCREATE_SIMPLE_BLINKY_DEMO_ONLY      0\r
109 \r
110 /* This demo uses heap_5.c, and these constants define the sizes of the regions\r
111 that make up the total heap.  This is only done to provide an example of heap_5\r
112 being used as this demo could easily create one large heap region instead of\r
113 multiple smaller heap regions - in which case heap_4.c would be the more\r
114 appropriate choice. */\r
115 #define mainREGION_1_SIZE       3001\r
116 #define mainREGION_2_SIZE       18105\r
117 #define mainREGION_3_SIZE       1107\r
118 \r
119 /*\r
120  * main_blinky() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1.\r
121  * main_full() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0.\r
122  */\r
123 extern void main_blinky( void );\r
124 extern void main_full( void );\r
125 \r
126 /*\r
127  * Some of the RTOS hook (callback) functions only need special processing when\r
128  * the full demo is being used.  The simply blinky demo has no special\r
129  * requirements, so these functions are called from the hook functions defined\r
130  * in this file, but are defined in main_full.c.\r
131  */\r
132 void vFullDemoTickHookFunction( void );\r
133 void vFullDemoIdleFunction( void );\r
134 \r
135 /*\r
136  * This demo uses heap_5.c, so start by defining some heap regions.  This is\r
137  * only done to provide an example as this demo could easily create one large\r
138  * heap region instead of multiple smaller heap regions - in which case heap_4.c\r
139  * would be the more appropriate choice.  No initialisation is required when\r
140  * heap_4.c is used.\r
141  */\r
142 static void  prvInitialiseHeap( void );\r
143 \r
144 /*\r
145  * Prototypes for the standard FreeRTOS callback/hook functions implemented\r
146  * within this file.\r
147  */\r
148 void vApplicationMallocFailedHook( void );\r
149 void vApplicationIdleHook( void );\r
150 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );\r
151 void vApplicationTickHook( void );\r
152 \r
153 /*\r
154  * Writes trace data to a disk file when the trace recording is stopped.\r
155  * This function will simply overwrite any trace files that already exist.\r
156  */\r
157 static void prvSaveTraceFile( void );\r
158 \r
159 /* The user trace event posted to the trace recording on each tick interrupt.\r
160 Note tick events will not appear in the trace recording with regular period\r
161 because this project runs in a Windows simulator, and does not therefore\r
162 exhibit deterministic behaviour. */\r
163 traceLabel xTickTraceUserEvent;\r
164 static portBASE_TYPE xTraceRunning = pdTRUE;\r
165 \r
166 /*-----------------------------------------------------------*/\r
167 \r
168 int main( void )\r
169 {\r
170         /* This demo uses heap_5.c, so start by defining some heap regions.  This\r
171         is only done to provide an example as this demo could easily create one\r
172         large heap region instead of multiple smaller heap regions - in which case\r
173         heap_4.c would be the more appropriate choice.  No initialisation is\r
174         required when heap_4.c is used. */\r
175         prvInitialiseHeap();\r
176 \r
177         /* Initialise the trace recorder and create the label used to post user\r
178         events to the trace recording on each tick interrupt. */\r
179         vTraceInitTraceData();\r
180         xTickTraceUserEvent = xTraceOpenLabel( "tick" );\r
181 \r
182         /* Start the trace recording - the recording is written to a file if\r
183         configASSERT() is called. */\r
184         printf( "\r\nTrace started.  Hit a key to dump trace file to disk (does not work from Eclipse console).\r\n" );\r
185         fflush( stdout );\r
186         uiTraceStart();\r
187 \r
188         /* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top\r
189         of this file. */\r
190         #if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
191         {\r
192                 main_blinky();\r
193         }\r
194         #else\r
195         {\r
196                 main_full();\r
197         }\r
198         #endif\r
199 \r
200         return 0;\r
201 }\r
202 /*-----------------------------------------------------------*/\r
203 \r
204 void vApplicationMallocFailedHook( void )\r
205 {\r
206         /* vApplicationMallocFailedHook() will only be called if\r
207         configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h.  It is a hook\r
208         function that will get called if a call to pvPortMalloc() fails.\r
209         pvPortMalloc() is called internally by the kernel whenever a task, queue,\r
210         timer or semaphore is created.  It is also called by various parts of the\r
211         demo application.  If heap_1.c or heap_2.c are used, then the size of the\r
212         heap available to pvPortMalloc() is defined by configTOTAL_HEAP_SIZE in\r
213         FreeRTOSConfig.h, and the xPortGetFreeHeapSize() API function can be used\r
214         to query the size of free heap space that remains (although it does not\r
215         provide information on how the remaining heap might be fragmented). */\r
216         vAssertCalled( __LINE__, __FILE__ );\r
217 }\r
218 /*-----------------------------------------------------------*/\r
219 \r
220 void vApplicationIdleHook( void )\r
221 {\r
222         /* vApplicationIdleHook() will only be called if configUSE_IDLE_HOOK is set\r
223         to 1 in FreeRTOSConfig.h.  It will be called on each iteration of the idle\r
224         task.  It is essential that code added to this hook function never attempts\r
225         to block in any way (for example, call xQueueReceive() with a block time\r
226         specified, or call vTaskDelay()).  If the application makes use of the\r
227         vTaskDelete() API function (as this demo application does) then it is also\r
228         important that vApplicationIdleHook() is permitted to return to its calling\r
229         function, because it is the responsibility of the idle task to clean up\r
230         memory allocated by the kernel to any task that has since been deleted. */\r
231 \r
232         /* Uncomment the following code to allow the trace to be stopped with any \r
233         key press.  The code is commented out by default as the kbhit() function\r
234         interferes with the run time behaviour. */\r
235         /* \r
236                 if( _kbhit() != pdFALSE )\r
237                 {\r
238                         if( xTraceRunning == pdTRUE )\r
239                         {\r
240                                 vTraceStop();\r
241                                 prvSaveTraceFile();\r
242                                 xTraceRunning = pdFALSE;\r
243                         }\r
244                 }\r
245         */\r
246 \r
247         #if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY != 1 )\r
248         {\r
249                 /* Call the idle task processing used by the full demo.  The simple\r
250                 blinky demo does not use the idle task hook. */\r
251                 vFullDemoIdleFunction();\r
252         }\r
253         #endif\r
254 }\r
255 /*-----------------------------------------------------------*/\r
256 \r
257 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
258 {\r
259         ( void ) pcTaskName;\r
260         ( void ) pxTask;\r
261 \r
262         /* Run time stack overflow checking is performed if\r
263         configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
264         function is called if a stack overflow is detected. */\r
265         vAssertCalled( __LINE__, __FILE__ );\r
266 }\r
267 /*-----------------------------------------------------------*/\r
268 \r
269 void vApplicationTickHook( void )\r
270 {\r
271         /* This function will be called by each tick interrupt if\r
272         configUSE_TICK_HOOK is set to 1 in FreeRTOSConfig.h.  User code can be\r
273         added here, but the tick hook is called from an interrupt context, so\r
274         code must not attempt to block, and only the interrupt safe FreeRTOS API\r
275         functions can be used (those that end in FromISR()). */\r
276 \r
277         #if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY != 1 )\r
278         {\r
279                 vFullDemoTickHookFunction();\r
280         }\r
281         #endif /* mainCREATE_SIMPLE_BLINKY_DEMO_ONLY */\r
282 \r
283         /* Write a user event to the trace log.\r
284         Note tick events will not appear in the trace recording with regular period\r
285         because this project runs in a Windows simulator, and does not therefore\r
286         exhibit deterministic behaviour.  Windows will run the simulator in\r
287         bursts. */\r
288         vTraceUserEvent( xTickTraceUserEvent );\r
289 }\r
290 /*-----------------------------------------------------------*/\r
291 \r
292 void vAssertCalled( unsigned long ulLine, const char * const pcFileName )\r
293 {\r
294 static portBASE_TYPE xPrinted = pdFALSE;\r
295 volatile uint32_t ulSetToNonZeroInDebuggerToContinue = 0;\r
296 \r
297         /* Parameters are not used. */\r
298         ( void ) ulLine;\r
299         ( void ) pcFileName;\r
300 \r
301         taskENTER_CRITICAL();\r
302         {\r
303                 /* Stop the trace recording. */\r
304                 if( xPrinted == pdFALSE )\r
305                 {\r
306                         xPrinted = pdTRUE;\r
307                         if( xTraceRunning == pdTRUE )\r
308                         {\r
309                                 vTraceStop();\r
310                                 prvSaveTraceFile();\r
311                         }\r
312                 }\r
313 \r
314                 /* You can step out of this function to debug the assertion by using\r
315                 the debugger to set ulSetToNonZeroInDebuggerToContinue to a non-zero\r
316                 value. */\r
317                 while( ulSetToNonZeroInDebuggerToContinue == 0 )\r
318                 {\r
319                         __asm volatile( "NOP" );\r
320                         __asm volatile( "NOP" );\r
321                 }\r
322         }\r
323         taskEXIT_CRITICAL();\r
324 }\r
325 /*-----------------------------------------------------------*/\r
326 \r
327 static void prvSaveTraceFile( void )\r
328 {\r
329 FILE* pxOutputFile;\r
330 \r
331         pxOutputFile = fopen( "Trace.dump", "wb");\r
332 \r
333         if( pxOutputFile != NULL )\r
334         {\r
335                 fwrite( RecorderDataPtr, sizeof( RecorderDataType ), 1, pxOutputFile );\r
336                 fclose( pxOutputFile );\r
337                 printf( "\r\nTrace output saved to Trace.dump\r\n" );\r
338         }\r
339         else\r
340         {\r
341                 printf( "\r\nFailed to create trace dump file\r\n" );\r
342         }\r
343 }\r
344 /*-----------------------------------------------------------*/\r
345 \r
346 static void  prvInitialiseHeap( void )\r
347 {\r
348 /* This demo uses heap_5.c, so start by defining some heap regions.  This is\r
349 only done to provide an example as this demo could easily create one large heap\r
350 region instead of multiple smaller heap regions - in which case heap_4.c would\r
351 be the more appropriate choice.  No initialisation is required when heap_4.c is\r
352 used.  The xHeapRegions structure requires the regions to be defined in order,\r
353 so this just creates one big array, then populates the structure with offsets\r
354 into the array - with gaps in between and messy alignment just for test\r
355 purposes. */\r
356 static uint8_t ucHeap[ configTOTAL_HEAP_SIZE ];\r
357 volatile uint32_t ulAdditionalOffset = 19; /* Just to prevent 'condition is always true' warnings in configASSERT(). */\r
358 const HeapRegion_t xHeapRegions[] =\r
359 {\r
360         /* Start address with dummy offsets                                             Size */\r
361         { ucHeap + 1,                                                                                   mainREGION_1_SIZE },\r
362         { ucHeap + 15 + mainREGION_1_SIZE,                                              mainREGION_2_SIZE },\r
363         { ucHeap + 19 + mainREGION_1_SIZE + mainREGION_2_SIZE,  mainREGION_3_SIZE },\r
364         { NULL, 0 }\r
365 };\r
366 \r
367         /* Sanity check that the sizes and offsets defined actually fit into the\r
368         array. */\r
369         configASSERT( ( ulAdditionalOffset + mainREGION_1_SIZE + mainREGION_2_SIZE + mainREGION_3_SIZE ) < configTOTAL_HEAP_SIZE );\r
370 \r
371         vPortDefineHeapRegions( xHeapRegions );\r
372 }\r
373 /*-----------------------------------------------------------*/\r
374 \r