]> git.sur5r.net Git - freertos/blob - Demo/ARM7_AT91SAM7S64_IAR/main.c
Remove system files not longer required by IAR V5.11.
[freertos] / Demo / ARM7_AT91SAM7S64_IAR / main.c
1 /*\r
2         FreeRTOS.org V4.7.0 - Copyright (C) 2003-2007 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section \r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license \r
28         and contact details.  Please ensure to read the configuration and relevant \r
29         port sections of the online documentation.\r
30 \r
31         Also see http://www.SafeRTOS.com a version that has been certified for use\r
32         in safety critical systems, plus commercial licensing, development and\r
33         support options.\r
34         ***************************************************************************\r
35 */\r
36 \r
37 /* \r
38         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
39         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
40         called.  The demo applications included in the FreeRTOS.org download switch\r
41         to supervisor mode prior to main being called.  If you are not using one of\r
42         these demo application projects then ensure Supervisor mode is used.\r
43 */\r
44 \r
45 /*\r
46  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
47  * documentation provides more details of the demo application tasks.  The SAM7\r
48  * includes a sample USB that emulates a Joystick input to a USB host.\r
49  * \r
50  * Main.c also creates a task called "Check".  This only executes every three \r
51  * seconds but has the highest priority so is guaranteed to get processor time.  \r
52  * Its main function is to check that all the other tasks are still operational.\r
53  * Each task (other than the "flash" tasks) maintains a unique count that is \r
54  * incremented each time the task successfully completes its function.  Should \r
55  * any error occur within such a task the count is permanently halted.  The \r
56  * check task inspects the count of each task to ensure it has changed since\r
57  * the last time the check task executed.  If all the count variables have \r
58  * changed all the tasks are still executing error free, and the check task\r
59  * toggles the onboard LED.  Should any task contain an error at any time \r
60  * the LED toggle rate will change from 3 seconds to 500ms.\r
61  *\r
62  */\r
63 \r
64 /* Standard includes. */\r
65 #include <stdlib.h>\r
66 \r
67 /* Scheduler includes. */\r
68 #include "FreeRTOS.h"\r
69 #include "task.h"\r
70 \r
71 /* Demo application includes. */\r
72 #include "flash.h"\r
73 #include "integer.h"\r
74 #include "PollQ.h"\r
75 #include "BlockQ.h"\r
76 #include "semtest.h"\r
77 #include "dynamic.h"\r
78 #include "partest.h"\r
79 #include "comtest2.h"\r
80 #include "USB/USBSample.h"\r
81 \r
82 /* Priorities for the demo application tasks. */\r
83 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
84 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
85 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
86 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
87 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
88 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
89 #define mainUSB_PRIORITY                        ( tskIDLE_PRIORITY + 2 )\r
90 \r
91 /* Constants required by the 'Check' task. */\r
92 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
93 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
94 #define mainCHECK_TASK_LED                      ( 3 )\r
95 \r
96 /* Constants for the ComTest tasks. */\r
97 #define mainCOM_TEST_BAUD_RATE          ( ( unsigned portLONG ) 115200 )\r
98 #define mainCOM_TEST_LED                        ( 4 ) /* Off the board. */\r
99 \r
100 /*\r
101  * The task that executes at the highest priority and calls \r
102  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
103  * of the file.\r
104  */\r
105 static void vErrorChecks( void *pvParameters );\r
106 \r
107 /*\r
108  * Configure the processor for use with the Atmel demo board.  Setup is minimal\r
109  * as the low level init function (called from the startup asm file) takes care\r
110  * of most things.\r
111  */\r
112 static void prvSetupHardware( void );\r
113 \r
114 /*\r
115  * Checks that all the demo application tasks are still executing without error\r
116  * - as described at the top of the file.\r
117  */\r
118 static portLONG prvCheckOtherTasksAreStillRunning( void );\r
119 \r
120 \r
121 /*-----------------------------------------------------------*/\r
122 \r
123 /*\r
124  * Starts all the other tasks, then starts the scheduler. \r
125  */\r
126 void main( void )\r
127 {\r
128         /* Setup any hardware that has not already been configured by the low\r
129         level init routines. */\r
130         prvSetupHardware();\r
131 \r
132         /* Initialise the LED outputs for use by the demo application tasks. */\r
133         vParTestInitialise();\r
134 \r
135         /* Start all the standard demo application tasks. */\r
136         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
137         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
138         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
139         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
140         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
141         vStartDynamicPriorityTasks();\r
142         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
143         \r
144         /* Also start the USB demo which is just for the SAM7. */\r
145         xTaskCreate( vUSBDemoTask, "USB", configMINIMAL_STACK_SIZE, NULL, mainUSB_PRIORITY, NULL );\r
146         \r
147         /* Start the check task - which is defined in this file. */\r
148         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
149 \r
150         /* Start the scheduler.\r
151 \r
152         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
153         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
154         called.  The demo applications included in the FreeRTOS.org download switch\r
155         to supervisor mode prior to main being called.  If you are not using one of\r
156         these demo application projects then ensure Supervisor mode is used here. */\r
157 \r
158         vTaskStartScheduler();\r
159 \r
160         /* We should never get here as control is now taken by the scheduler. */\r
161         return;\r
162 }\r
163 /*-----------------------------------------------------------*/\r
164 \r
165 static void prvSetupHardware( void )\r
166 {\r
167         /* When using the JTAG debugger the hardware is not always initialised to\r
168         the correct default state.  This line just ensures that this does not\r
169         cause all interrupts to be masked at the start. */\r
170         AT91C_BASE_AIC->AIC_EOICR = 0;\r
171         \r
172         /* Most setup is performed by the low level init function called from the \r
173         startup asm file. */\r
174 \r
175         /* Configure the PIO Lines corresponding to LED1 to LED4 to be outputs as \r
176         well as the UART Tx line. */\r
177         AT91F_PIO_CfgOutput( AT91C_BASE_PIOA, LED_MASK );\r
178         \r
179         /* Enable the peripheral clock. */\r
180         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_PIOA );\r
181 }\r
182 /*-----------------------------------------------------------*/\r
183 \r
184 static void vErrorChecks( void *pvParameters )\r
185 {\r
186 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
187 \r
188         /* The parameters are not used in this task. */\r
189         ( void ) pvParameters;\r
190 \r
191         /* Cycle for ever, delaying then checking all the other tasks are still\r
192         operating without error.  If an error is detected then the delay period\r
193         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
194         the on board LED flash rate will increase. */\r
195 \r
196         for( ;; )\r
197         {\r
198                 /* Delay until it is time to execute again. */\r
199                 vTaskDelay( xDelayPeriod );\r
200         \r
201                 /* Check all the standard demo application tasks are executing without \r
202                 error. */\r
203                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
204                 {\r
205                         /* An error has been detected in one of the tasks - flash faster. */\r
206                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
207                 }\r
208                 \r
209                 vParTestToggleLED( mainCHECK_TASK_LED );\r
210         }\r
211 }\r
212 /*-----------------------------------------------------------*/\r
213 \r
214 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
215 {\r
216 portLONG lReturn = ( portLONG ) pdPASS;\r
217 \r
218         /* Check all the demo tasks (other than the flash tasks) to ensure\r
219         that they are all still running, and that none of them have detected\r
220         an error. */\r
221 \r
222         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
223         {\r
224                 lReturn = ( portLONG ) pdFAIL;\r
225         }\r
226 \r
227         if( xArePollingQueuesStillRunning() != pdTRUE )\r
228         {\r
229                 lReturn = ( portLONG ) pdFAIL;\r
230         }\r
231 \r
232         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
233         {\r
234                 lReturn = ( portLONG ) pdFAIL;\r
235         }\r
236 \r
237         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
238         {\r
239                 lReturn = ( portLONG ) pdFAIL;\r
240         }\r
241 \r
242         if( xAreComTestTasksStillRunning() != pdTRUE )\r
243         {\r
244                 lReturn = ( portLONG ) pdFAIL;\r
245         }\r
246 \r
247         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
248         {\r
249                 lReturn = ( portLONG ) pdFAIL;\r
250         }\r
251 \r
252         return lReturn;\r
253 }\r
254 /*-----------------------------------------------------------*/\r
255 \r
256 \r