]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_A9_RZ_R7S72100_IAR_DS-5/Source/main.c
Minor updates and change version number for V7.5.0 release.
[freertos] / FreeRTOS / Demo / CORTEX_A9_RZ_R7S72100_IAR_DS-5 / Source / main.c
1 /*\r
2     FreeRTOS V7.5.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
5 \r
6     ***************************************************************************\r
7      *                                                                       *\r
8      *    FreeRTOS provides completely free yet professionally developed,    *\r
9      *    robust, strictly quality controlled, supported, and cross          *\r
10      *    platform software that has become a de facto standard.             *\r
11      *                                                                       *\r
12      *    Help yourself get started quickly and support the FreeRTOS         *\r
13      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
14      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
15      *                                                                       *\r
16      *    Thank you!                                                         *\r
17      *                                                                       *\r
18     ***************************************************************************\r
19 \r
20     This file is part of the FreeRTOS distribution.\r
21 \r
22     FreeRTOS is free software; you can redistribute it and/or modify it under\r
23     the terms of the GNU General Public License (version 2) as published by the\r
24     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
25 \r
26     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
27     >>! a combined work that includes FreeRTOS without being obliged to provide\r
28     >>! the source code for proprietary components outside of the FreeRTOS\r
29     >>! kernel.\r
30 \r
31     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
32     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
33     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
34     link: http://www.freertos.org/a00114.html\r
35 \r
36     1 tab == 4 spaces!\r
37 \r
38     ***************************************************************************\r
39      *                                                                       *\r
40      *    Having a problem?  Start by reading the FAQ "My application does   *\r
41      *    not run, what could be wrong?"                                     *\r
42      *                                                                       *\r
43      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
44      *                                                                       *\r
45     ***************************************************************************\r
46 \r
47     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
48     license and Real Time Engineers Ltd. contact details.\r
49 \r
50     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
51     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
52     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
53 \r
54     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
55     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
56     licenses offer ticketed support, indemnification and middleware.\r
57 \r
58     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
59     engineered and independently SIL3 certified version for use in safety and\r
60     mission critical applications that require provable dependability.\r
61 \r
62     1 tab == 4 spaces!\r
63 */\r
64 \r
65 /******************************************************************************\r
66  * This project provides two demo applications.  A simple blinky style project,\r
67  * and a more comprehensive test and demo application.  The\r
68  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting (defined in this file) is used to\r
69  * select between the two.  The simply blinky demo is implemented and described\r
70  * in main_blinky.c.  The more comprehensive test and demo application is\r
71  * implemented and described in main_full.c.\r
72  *\r
73  * This file implements the code that is not demo specific, including the\r
74  * hardware setup and FreeRTOS hook functions.\r
75  *\r
76  * ENSURE TO READ THE DOCUMENTATION PAGE FOR THIS PORT AND DEMO APPLICATION ON\r
77  * THE http://www.FreeRTOS.org WEB SITE FOR FULL INFORMATION ON USING THIS DEMO\r
78  * APPLICATION, AND ITS ASSOCIATE FreeRTOS ARCHITECTURE PORT!\r
79  *\r
80  */\r
81 \r
82 /* Scheduler include files. */\r
83 #include "FreeRTOS.h"\r
84 #include "task.h"\r
85 #include "semphr.h"\r
86 \r
87 /* Standard demo includes. */\r
88 #include "partest.h"\r
89 #include "TimerDemo.h"\r
90 #include "QueueOverwrite.h"\r
91 \r
92 /* Renesas includes. */\r
93 #include "r_typedefs.h"\r
94 #include "sio_char.h"\r
95 \r
96 /* Set mainCREATE_SIMPLE_BLINKY_DEMO_ONLY to one to run the simple blinky demo,\r
97 or 0 to run the more comprehensive test and demo application. */\r
98 #define mainCREATE_SIMPLE_BLINKY_DEMO_ONLY      0\r
99 \r
100 /*-----------------------------------------------------------*/\r
101 \r
102 /*\r
103  * Configure the hardware as necessary to run this demo.\r
104  */\r
105 static void prvSetupHardware( void );\r
106 \r
107 /*\r
108  * main_blinky() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 1.\r
109  * main_full() is used when mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is set to 0.\r
110  */\r
111 #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1\r
112         extern void main_blinky( void );\r
113 #else\r
114         extern void main_full( void );\r
115 #endif /* #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1 */\r
116 \r
117 /* Prototypes for the standard FreeRTOS callback/hook functions implemented\r
118 within this file. */\r
119 void vApplicationMallocFailedHook( void );\r
120 void vApplicationIdleHook( void );\r
121 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );\r
122 void vApplicationTickHook( void );\r
123 \r
124 /*\r
125  * Creates and verifies different files on the volume, demonstrating the use of\r
126  * various different API functions.\r
127  */\r
128 extern void vCreateAndVerifySampleFiles( void );\r
129 \r
130 /*-----------------------------------------------------------*/\r
131 \r
132 int main( void )\r
133 {\r
134         /* Configure the hardware ready to run the demo. */\r
135         prvSetupHardware();\r
136 \r
137         /* The mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting is described at the top\r
138         of this file. */\r
139         #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 1\r
140         {\r
141                 main_blinky();\r
142         }\r
143         #else\r
144         {\r
145                 main_full();\r
146         }\r
147         #endif\r
148 \r
149         return 0;\r
150 }\r
151 /*-----------------------------------------------------------*/\r
152 \r
153 static void prvSetupHardware( void )\r
154 {\r
155         /* Initialise the pins used by the LEDs (the obscure [now for historical\r
156         reasons] name ParTest stands for Parallel Port test). */\r
157         vParTestInitialise();\r
158 \r
159     /* Call the Renesas driver that initialises the serial port.  P1=66.67MHz\r
160         CKS=0 SCBRR=17 Bit rate error=0.46% => Baud rate=115200bps. */\r
161     IoInitScif2();\r
162 }\r
163 /*-----------------------------------------------------------*/\r
164 \r
165 void vApplicationMallocFailedHook( void )\r
166 {\r
167         /* Called if a call to pvPortMalloc() fails because there is insufficient\r
168         free memory available in the FreeRTOS heap.  pvPortMalloc() is called\r
169         internally by FreeRTOS API functions that create tasks, queues, software\r
170         timers, and semaphores.  The size of the FreeRTOS heap is set by the\r
171         configTOTAL_HEAP_SIZE configuration constant in FreeRTOSConfig.h. */\r
172         taskDISABLE_INTERRUPTS();\r
173         for( ;; );\r
174 }\r
175 /*-----------------------------------------------------------*/\r
176 \r
177 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
178 {\r
179         ( void ) pcTaskName;\r
180         ( void ) pxTask;\r
181 \r
182         /* Run time stack overflow checking is performed if\r
183         configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
184         function is called if a stack overflow is detected. */\r
185         taskDISABLE_INTERRUPTS();\r
186         for( ;; );\r
187 }\r
188 /*-----------------------------------------------------------*/\r
189 \r
190 void vApplicationIdleHook( void )\r
191 {\r
192 volatile size_t xFreeHeapSpace;\r
193 \r
194         /* This is just a trivial example of an idle hook.  It is called on each\r
195         cycle of the idle task.  It must *NOT* attempt to block.  In this case the\r
196         idle task just queries the amount of FreeRTOS heap that remains.  See the\r
197         memory management section on the http://www.FreeRTOS.org web site for memory\r
198         management options.  If there is a lot of heap memory free then the\r
199         configTOTAL_HEAP_SIZE value in FreeRTOSConfig.h can be reduced to free up\r
200         RAM. */\r
201         xFreeHeapSpace = xPortGetFreeHeapSize();\r
202 \r
203         /* Remove compiler warning about xFreeHeapSpace being set but never used. */\r
204         ( void ) xFreeHeapSpace;\r
205 \r
206         #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY != 1\r
207         {\r
208                 /* If the file system is only going to be accessed from one task then\r
209                 F_FS_THREAD_AWARE can be set to 0 and the set of example files is\r
210                 created before the RTOS scheduler is started.  If the file system is\r
211                 going to be     access from more than one task then F_FS_THREAD_AWARE must\r
212                 be set to 1 and the set of sample files are created from the idle task\r
213                 hook function. */\r
214                 #if F_FS_THREAD_AWARE == 1\r
215                 {\r
216                         static portBASE_TYPE xCreatedSampleFiles = pdFALSE;\r
217 \r
218                         /* Initialise the drive and file system, then create a few example\r
219                         files.  The output from this function just goes to the stdout window,\r
220                         allowing the output to be viewed when the UDP command console is not\r
221                         connected. */\r
222                         if( xCreatedSampleFiles == pdFALSE )\r
223                         {\r
224                                 vCreateAndVerifySampleFiles();\r
225                                 xCreatedSampleFiles = pdTRUE;\r
226                         }\r
227                 }\r
228                 #endif\r
229         }\r
230         #endif\r
231 }\r
232 /*-----------------------------------------------------------*/\r
233 \r
234 void vAssertCalled( const char * pcFile, unsigned long ulLine )\r
235 {\r
236 volatile unsigned long ul = 0;\r
237 \r
238         ( void ) pcFile;\r
239         ( void ) ulLine;\r
240 \r
241         taskENTER_CRITICAL();\r
242         {\r
243                 /* Set ul to a non-zero value using the debugger to step out of this\r
244                 function. */\r
245                 while( ul == 0 )\r
246                 {\r
247                         portNOP();\r
248                 }\r
249         }\r
250         taskEXIT_CRITICAL();\r
251 }\r
252 /*-----------------------------------------------------------*/\r
253 \r
254 void vApplicationTickHook( void )\r
255 {\r
256         #if mainCREATE_SIMPLE_BLINKY_DEMO_ONLY == 0\r
257         {\r
258                 /* The full demo includes a software timer demo/test that requires\r
259                 prodding periodically from the tick interrupt. */\r
260                 vTimerPeriodicISRTests();\r
261 \r
262                 /* Call the periodic queue overwrite from ISR demo. */\r
263                 vQueueOverwritePeriodicISRDemo();\r
264         }\r
265         #endif\r
266 }\r
267 \r
268 \r
269 \r