]> git.sur5r.net Git - freertos/blob - Demo/ARM7_STR71x_IAR/main.c
First version under SVN is V4.0.1
[freertos] / Demo / ARM7_STR71x_IAR / main.c
1 /*\r
2         FreeRTOS V4.0.1 - Copyright (C) 2003-2006 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \r
6         FreeRTOS 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 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; 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, 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 */\r
32 \r
33 /*\r
34         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
35         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
36         called.  The demo applications included in the FreeRTOS.org download switch\r
37         to supervisor mode prior to main being called.  If you are not using one of\r
38         these demo application projects then ensure Supervisor mode is used.\r
39 */\r
40 \r
41 /*\r
42  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
43  * documentation provides more details of the demo application tasks.\r
44  *\r
45  * Main.c also creates a task called "Check".  This only executes every three\r
46  * seconds but has the highest priority so is guaranteed to get processor time.\r
47  * Its main function is to check that all the other tasks are still operational.\r
48  * Each task (other than the "flash" tasks) maintains a unique count that is\r
49  * incremented each time the task successfully completes its function.  Should\r
50  * any error occur within such a task the count is permanently halted.  The\r
51  * check task inspects the count of each task to ensure it has changed since\r
52  * the last time the check task executed.  If all the count variables have\r
53  * changed all the tasks are still executing error free, and the check task\r
54  * toggles the onboard LED.  Should any task contain an error at any time\r
55  * the LED toggle rate will change from 3 seconds to 500ms.\r
56  *\r
57  */\r
58 \r
59 /* Library includes. */\r
60 #include "RCCU.h"\r
61 #include "wdg.h"\r
62 \r
63 /* Scheduler includes. */\r
64 #include "FreeRTOS.h"\r
65 #include "task.h"\r
66 \r
67 /* Demo application includes. */\r
68 #include "flash.h"\r
69 #include "integer.h"\r
70 #include "PollQ.h"\r
71 #include "BlockQ.h"\r
72 #include "semtest.h"\r
73 #include "dynamic.h"\r
74 #include "partest.h"\r
75 #include "comtest2.h"\r
76 \r
77 /* Priorities for the demo application tasks. */\r
78 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
79 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
80 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
81 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
82 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
83 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
84 \r
85 /* Constants required by the 'Check' task. */\r
86 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
87 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
88 #define mainCHECK_TASK_LED                      ( 4 )\r
89 \r
90 /* Constants for the ComTest tasks. */\r
91 #define mainCOM_TEST_BAUD_RATE          ( ( unsigned portLONG ) 115200 )\r
92 #define mainCOM_TEST_LED                        ( 6 ) /* The LED built onto the kickstart board. */\r
93 \r
94 /*\r
95  * The task that executes at the highest priority and calls\r
96  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
97  * of the file.\r
98  */\r
99 static void vErrorChecks( void *pvParameters );\r
100 \r
101 /*\r
102  * Configure the processor for use with the IAR STR71x demo board.  This\r
103  * just sets the PLL for the required frequency.\r
104  */\r
105 static void prvSetupHardware( void );\r
106 \r
107 /*\r
108  * Checks that all the demo application tasks are still executing without error\r
109  * - as described at the top of the file.  Called by vErrorChecks().\r
110  */\r
111 static portLONG prvCheckOtherTasksAreStillRunning( void );\r
112 \r
113 \r
114 /*-----------------------------------------------------------*/\r
115 \r
116 /*\r
117  * Starts all the other tasks, then starts the scheduler.\r
118  */\r
119 void main( void )\r
120 {\r
121         /* Setup any hardware that has not already been configured by the low\r
122         level init routines. */\r
123         prvSetupHardware();\r
124 \r
125         /* Initialise the LED outputs for use by the demo application tasks. */\r
126         vParTestInitialise();\r
127 \r
128         /* Start all the standard demo application tasks. */\r
129         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
130         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
131         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
132         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
133         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
134         vStartDynamicPriorityTasks();\r
135         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
136 \r
137         /* Start the check task - which is defined in this file. */\r
138         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
139 \r
140         /* Start the scheduler.\r
141 \r
142         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
143         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
144         called.  The demo applications included in the FreeRTOS.org download switch\r
145         to supervisor mode prior to main being called.  If you are not using one of\r
146         these demo application projects then ensure Supervisor mode is used here. */\r
147 \r
148         vTaskStartScheduler();\r
149 \r
150         /* We should never get here as control is now taken by the scheduler. */\r
151         return;\r
152 }\r
153 /*-----------------------------------------------------------*/\r
154 \r
155 static void prvSetupHardware( void )\r
156 {\r
157     /* Setup the PLL to generate a 48MHz clock from the 4MHz CLK. */\r
158 \r
159     /* Turn of the div by two. */\r
160         RCCU_Div2Config( DISABLE );\r
161 \r
162     /* 48MHz = ( 4MHz * 12 ) / 1 */\r
163         RCCU_PLL1Config( RCCU_PLL1_Mul_12, RCCU_Div_1 );\r
164     RCCU_RCLKSourceConfig( RCCU_PLL1_Output );\r
165 }\r
166 /*-----------------------------------------------------------*/\r
167 \r
168 static void vErrorChecks( void *pvParameters )\r
169 {\r
170 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
171 portTickType xLastWakeTime;\r
172 \r
173         /* The parameters are not used in this task. */\r
174         ( void ) pvParameters;\r
175 \r
176         /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()\r
177         functions correctly. */\r
178         xLastWakeTime = xTaskGetTickCount();\r
179 \r
180         /* Cycle for ever, delaying then checking all the other tasks are still\r
181         operating without error.  If an error is detected then the delay period\r
182         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
183         the on board LED flash rate will increase. */\r
184 \r
185         for( ;; )\r
186         {\r
187                 /* Delay until it is time to execute again.  The delay period is\r
188                 shorter following an error so the LED flashes faster. */\r
189                 vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );\r
190         \r
191                 /* Check all the standard demo application tasks are executing without\r
192                 error. */\r
193                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
194                 {\r
195                         /* An error has been detected in one of the tasks - flash faster. */\r
196                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
197                 }\r
198                 \r
199                 vParTestToggleLED( mainCHECK_TASK_LED );\r
200         }\r
201 }\r
202 /*-----------------------------------------------------------*/\r
203 \r
204 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
205 {\r
206 portLONG lReturn = ( portLONG ) pdPASS;\r
207 \r
208         /* Check all the demo tasks (other than the flash tasks) to ensure\r
209         that they are all still running, and that none of them have detected\r
210         an error. */\r
211 \r
212         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
213         {\r
214                 lReturn = ( portLONG ) pdFAIL;\r
215         }\r
216 \r
217         if( xArePollingQueuesStillRunning() != pdTRUE )\r
218         {\r
219                 lReturn = ( portLONG ) pdFAIL;\r
220         }\r
221 \r
222         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
223         {\r
224                 lReturn = ( portLONG ) pdFAIL;\r
225         }\r
226 \r
227         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
228         {\r
229                 lReturn = ( portLONG ) pdFAIL;\r
230         }\r
231 \r
232         if( xAreComTestTasksStillRunning() != pdTRUE )\r
233         {\r
234                 lReturn = ( portLONG ) pdFAIL;\r
235         }\r
236 \r
237         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
238         {\r
239                 lReturn = ( portLONG ) pdFAIL;\r
240         }\r
241 \r
242         return lReturn;\r
243 }\r
244 /*-----------------------------------------------------------*/\r
245 \r
246 \r