]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/WIN32-MSVC/main.c
3684506d0adefcb6abaf6b0f8680e642431d65a9
[freertos] / FreeRTOS / Demo / WIN32-MSVC / main.c
1 /*\r
2     FreeRTOS V7.6.0 - Copyright (C) 2013 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 distribute\r
28     >>! a combined work that includes FreeRTOS without being obliged to provide\r
29     >>! the source code for proprietary components outside of the FreeRTOS\r
30     >>! 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      1\r
109 \r
110 /*\r
111  * main_blinky() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1.\r
112  * main_full() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0.\r
113  */\r
114 extern void main_blinky( void );\r
115 extern void main_full( void );\r
116 \r
117 /* Some of the RTOS hook (callback) functions only need special processing when\r
118 the full demo is being used.  The simply blinky demo has no special requirements,\r
119 so these functions are called from the hook functions defined in this file, but\r
120 are defined in main_full.c. */\r
121 void vFullDemoTickHookFunction( void );\r
122 void vFullDemoIdleFunction( void );\r
123 \r
124 /* Prototypes for the standard FreeRTOS callback/hook functions implemented\r
125 within this file. */\r
126 void vApplicationMallocFailedHook( void );\r
127 void vApplicationIdleHook( void );\r
128 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );\r
129 void vApplicationTickHook( void );\r
130 \r
131 /*\r
132  * Writes trace data to a disk file when the trace recording is stopped.\r
133  * This function will simply overwrite any trace files that already exist.\r
134  */\r
135 static void prvSaveTraceFile( void );\r
136 \r
137 /* The user trace event posted to the trace recording on each tick interrupt.\r
138 Note tick events will not appear in the trace recording with regular period\r
139 because this project runs in a Windows simulator, and does not therefore\r
140 exhibit deterministic behaviour. */\r
141 traceLabel xTickTraceUserEvent;\r
142 static portBASE_TYPE xTraceRunning = pdTRUE;\r
143 \r
144 /*-----------------------------------------------------------*/\r
145 \r
146 int main( void )\r
147 {\r
148         /* Initialise the trace recorder and create the label used to post user\r
149         events to the trace recording on each tick interrupt. */\r
150         vTraceInitTraceData();\r
151         xTickTraceUserEvent = xTraceOpenLabel( "tick" );\r
152 \r
153         /* Start the trace recording - the recording is written to a file if\r
154         configASSERT() is called. */\r
155         printf( "\r\nTrace started.  Hit a key to dump trace file to disk.\r\n" );\r
156         uiTraceStart();\r
157 \r
158         /* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top\r
159         of this file. */\r
160         #if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 )\r
161         {\r
162                 main_blinky();\r
163         }\r
164         #else\r
165         {\r
166                 main_full();\r
167         }\r
168         #endif\r
169 \r
170         return 0;\r
171 }\r
172 /*-----------------------------------------------------------*/\r
173 \r
174 void vApplicationMallocFailedHook( void )\r
175 {\r
176         /* vApplicationMallocFailedHook() will only be called if\r
177         configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h.  It is a hook\r
178         function that will get called if a call to pvPortMalloc() fails.\r
179         pvPortMalloc() is called internally by the kernel whenever a task, queue,\r
180         timer or semaphore is created.  It is also called by various parts of the\r
181         demo application.  If heap_1.c or heap_2.c are used, then the size of the\r
182         heap available to pvPortMalloc() is defined by configTOTAL_HEAP_SIZE in\r
183         FreeRTOSConfig.h, and the xPortGetFreeHeapSize() API function can be used\r
184         to query the size of free heap space that remains (although it does not\r
185         provide information on how the remaining heap might be fragmented). */\r
186         vAssertCalled( __LINE__, __FILE__ );\r
187 }\r
188 /*-----------------------------------------------------------*/\r
189 \r
190 void vApplicationIdleHook( void )\r
191 {\r
192         /* vApplicationIdleHook() will only be called if configUSE_IDLE_HOOK is set\r
193         to 1 in FreeRTOSConfig.h.  It will be called on each iteration of the idle\r
194         task.  It is essential that code added to this hook function never attempts\r
195         to block in any way (for example, call xQueueReceive() with a block time\r
196         specified, or call vTaskDelay()).  If the application makes use of the\r
197         vTaskDelete() API function (as this demo application does) then it is also\r
198         important that vApplicationIdleHook() is permitted to return to its calling\r
199         function, because it is the responsibility of the idle task to clean up\r
200         memory allocated by the kernel to any task that has since been deleted. */\r
201 \r
202         /* The trace can be stopped with any key press. */\r
203         if( _kbhit() != pdFALSE )\r
204         {\r
205                 if( xTraceRunning == pdTRUE )\r
206                 {\r
207                         vTraceStop();\r
208                         prvSaveTraceFile();\r
209                         xTraceRunning = pdFALSE;\r
210                 }\r
211         }\r
212 \r
213         #if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY != 1 )\r
214         {\r
215                 /* Call the idle task processing used by the full demo.  The simple\r
216                 blinky demo does not use the idle task hook. */\r
217                 vFullDemoIdleFunction();\r
218         }\r
219         #endif\r
220 }\r
221 /*-----------------------------------------------------------*/\r
222 \r
223 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
224 {\r
225         ( void ) pcTaskName;\r
226         ( void ) pxTask;\r
227 \r
228         /* Run time stack overflow checking is performed if\r
229         configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
230         function is called if a stack overflow is detected. */\r
231         vAssertCalled( __LINE__, __FILE__ );\r
232 }\r
233 /*-----------------------------------------------------------*/\r
234 \r
235 void vApplicationTickHook( void )\r
236 {\r
237         /* This function will be called by each tick interrupt if\r
238         configUSE_TICK_HOOK is set to 1 in FreeRTOSConfig.h.  User code can be\r
239         added here, but the tick hook is called from an interrupt context, so\r
240         code must not attempt to block, and only the interrupt safe FreeRTOS API\r
241         functions can be used (those that end in FromISR()). */\r
242 \r
243         #if ( mainCREATE_SIMPLE_BLINKY_DEMO_ONLY != 1 )\r
244         {\r
245                 vFullDemoTickHookFunction();\r
246         }\r
247         #endif /* mainCREATE_SIMPLE_BLINKY_DEMO_ONLY */\r
248 \r
249         /* Write a user event to the trace log.  \r
250         Note tick events will not appear in the trace recording with regular period\r
251         because this project runs in a Windows simulator, and does not therefore\r
252         exhibit deterministic behaviour.  Windows will run the simulator in \r
253         bursts. */\r
254         vTraceUserEvent( xTickTraceUserEvent );\r
255 }\r
256 /*-----------------------------------------------------------*/\r
257 \r
258 void vAssertCalled( unsigned long ulLine, const char * const pcFileName )\r
259 {\r
260         /* Parameters are not used. */\r
261         ( void ) ulLine;\r
262         ( void ) pcFileName;\r
263 \r
264         taskDISABLE_INTERRUPTS();\r
265 \r
266         /* Stop the trace recording. */\r
267         if( xTraceRunning == pdTRUE )\r
268         {\r
269                 vTraceStop();\r
270                 prvSaveTraceFile();\r
271         }\r
272                 \r
273         for( ;; );\r
274 }\r
275 /*-----------------------------------------------------------*/\r
276 \r
277 static void prvSaveTraceFile( void )\r
278 {\r
279 FILE* pxOutputFile;\r
280 \r
281         fopen_s( &pxOutputFile, "Trace.dump", "wb");\r
282 \r
283         if( pxOutputFile != NULL )\r
284         {\r
285                 fwrite( RecorderDataPtr, sizeof( RecorderDataType ), 1, pxOutputFile );\r
286                 fclose( pxOutputFile );\r
287                 printf( "\r\nTrace output saved to Trace.dump\r\n" );\r
288         }\r
289         else\r
290         {\r
291                 printf( "\r\nFailed to create trace dump file\r\n" );\r
292         }\r
293 }\r