]> git.sur5r.net Git - freertos/blob - Demo/AVR_ATMega323_WinAVR/main.c
Update to V5.1.2.
[freertos] / Demo / AVR_ATMega323_WinAVR / main.c
1 /*\r
2         FreeRTOS.org V5.1.2 - Copyright (C) 2003-2009 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     ***************************************************************************\r
28     *                                                                         *\r
29     * Get the FreeRTOS eBook!  See http://www.FreeRTOS.org/Documentation      *\r
30         *                                                                         *\r
31         * This is a concise, step by step, 'hands on' guide that describes both   *\r
32         * general multitasking concepts and FreeRTOS specifics. It presents and   *\r
33         * explains numerous examples that are written using the FreeRTOS API.     *\r
34         * Full source code for all the examples is provided in an accompanying    *\r
35         * .zip file.                                                              *\r
36     *                                                                         *\r
37     ***************************************************************************\r
38     ***************************************************************************\r
39 \r
40         Please ensure to read the configuration and relevant port sections of the\r
41         online documentation.\r
42 \r
43         http://www.FreeRTOS.org - Documentation, latest information, license and \r
44         contact details.\r
45 \r
46         http://www.SafeRTOS.com - A version that is certified for use in safety \r
47         critical systems.\r
48 \r
49         http://www.OpenRTOS.com - Commercial support, development, porting, \r
50         licensing and training services.\r
51 */\r
52 \r
53 /*\r
54  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
55  * documentation provides more details of the demo application tasks.\r
56  * \r
57  * Main. c also creates a task called "Check".  This only executes every three \r
58  * seconds but has the highest priority so is guaranteed to get processor time.  \r
59  * Its main function is to check that all the other tasks are still operational.  \r
60  * Each task that does not flash an LED maintains a unique count that is \r
61  * incremented each time the task successfully completes its function.  Should \r
62  * any error occur within such a task the count is permanently halted.  The \r
63  * check task inspects the count of each task to ensure it has changed since\r
64  * the last time the check task executed.  If all the count variables have \r
65  * changed all the tasks are still executing error free, and the check task\r
66  * toggles an LED.  Should any task contain an error at any time the LED toggle\r
67  * will stop.\r
68  *\r
69  * The LED flash and communications test tasks do not maintain a count.\r
70  */\r
71 \r
72 /*\r
73 Changes from V1.2.0\r
74         \r
75         + Changed the baud rate for the serial test from 19200 to 57600.\r
76 \r
77 Changes from V1.2.3\r
78 \r
79         + The integer and comtest tasks are now used when the cooperative scheduler \r
80           is being used.  Previously they were only used with the preemptive\r
81           scheduler.\r
82 \r
83 Changes from V1.2.5\r
84 \r
85         + Set the baud rate to 38400.  This has a smaller error percentage with an\r
86           8MHz clock (according to the manual).\r
87 \r
88 Changes from V2.0.0\r
89 \r
90         + Delay periods are now specified using variables and constants of\r
91           portTickType rather than unsigned portLONG.\r
92 \r
93 Changes from V2.6.1\r
94 \r
95         + The IAR and WinAVR AVR ports are now maintained separately.\r
96 \r
97 Changes from V4.0.5\r
98 \r
99         + Modified to demonstrate the use of co-routines.\r
100 \r
101 */\r
102 \r
103 #include <stdlib.h>\r
104 #include <string.h>\r
105 \r
106 #ifdef GCC_MEGA_AVR\r
107         /* EEPROM routines used only with the WinAVR compiler. */\r
108         #include <avr/eeprom.h> \r
109 #endif\r
110 \r
111 /* Scheduler include files. */\r
112 #include "FreeRTOS.h"\r
113 #include "task.h"\r
114 #include "croutine.h"\r
115 \r
116 /* Demo file headers. */\r
117 #include "PollQ.h"\r
118 #include "integer.h"\r
119 #include "serial.h"\r
120 #include "comtest.h"\r
121 #include "crflash.h"\r
122 #include "print.h"\r
123 #include "partest.h"\r
124 #include "regtest.h"\r
125 \r
126 /* Priority definitions for most of the tasks in the demo application.  Some\r
127 tasks just use the idle priority. */\r
128 #define mainLED_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
129 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
130 #define mainQUEUE_POLL_PRIORITY                 ( tskIDLE_PRIORITY + 2 )\r
131 #define mainCHECK_TASK_PRIORITY                 ( tskIDLE_PRIORITY + 3 )\r
132 \r
133 /* Baud rate used by the serial port tasks. */\r
134 #define mainCOM_TEST_BAUD_RATE                  ( ( unsigned portLONG ) 38400 )\r
135 \r
136 /* LED used by the serial port tasks.  This is toggled on each character Tx,\r
137 and mainCOM_TEST_LED + 1 is toggles on each character Rx. */\r
138 #define mainCOM_TEST_LED                                ( 4 )\r
139 \r
140 /* LED that is toggled by the check task.  The check task periodically checks\r
141 that all the other tasks are operating without error.  If no errors are found\r
142 the LED is toggled.  If an error is found at any time the LED is never toggles\r
143 again. */\r
144 #define mainCHECK_TASK_LED                              ( 7 )\r
145 \r
146 /* The period between executions of the check task. */\r
147 #define mainCHECK_PERIOD                                ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
148 \r
149 /* An address in the EEPROM used to count resets.  This is used to check that\r
150 the demo application is not unexpectedly resetting. */\r
151 #define mainRESET_COUNT_ADDRESS                 ( ( void * ) 0x50 )\r
152 \r
153 /* The number of coroutines to create. */\r
154 #define mainNUM_FLASH_COROUTINES                ( 3 )\r
155 \r
156 /*\r
157  * The task function for the "Check" task.\r
158  */\r
159 static void vErrorChecks( void *pvParameters );\r
160 \r
161 /*\r
162  * Checks the unique counts of other tasks to ensure they are still operational.\r
163  * Flashes an LED if everything is okay. \r
164  */\r
165 static void prvCheckOtherTasksAreStillRunning( void );\r
166 \r
167 /*\r
168  * Called on boot to increment a count stored in the EEPROM.  This is used to \r
169  * ensure the CPU does not reset unexpectedly.\r
170  */\r
171 static void prvIncrementResetCount( void );\r
172 \r
173 /*\r
174  * The idle hook is used to scheduler co-routines.\r
175  */\r
176 void vApplicationIdleHook( void );\r
177 \r
178 /*-----------------------------------------------------------*/\r
179 \r
180 portSHORT main( void )\r
181 {\r
182         prvIncrementResetCount();\r
183 \r
184         /* Setup the LED's for output. */\r
185         vParTestInitialise();\r
186 \r
187         /* Create the standard demo tasks. */\r
188         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
189         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
190         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
191         vStartRegTestTasks();\r
192         \r
193         /* Create the tasks defined within this file. */\r
194         xTaskCreate( vErrorChecks, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
195 \r
196         /* Create the co-routines that flash the LED's. */\r
197         vStartFlashCoRoutines( mainNUM_FLASH_COROUTINES );\r
198         \r
199         /* In this port, to use preemptive scheduler define configUSE_PREEMPTION \r
200         as 1 in portmacro.h.  To use the cooperative scheduler define \r
201         configUSE_PREEMPTION as 0. */\r
202         vTaskStartScheduler();\r
203 \r
204         return 0;\r
205 }\r
206 /*-----------------------------------------------------------*/\r
207 \r
208 static void vErrorChecks( void *pvParameters )\r
209 {\r
210 static volatile unsigned portLONG ulDummyVariable = 3UL;\r
211 \r
212         /* The parameters are not used. */\r
213         ( void ) pvParameters;\r
214 \r
215         /* Cycle for ever, delaying then checking all the other tasks are still\r
216         operating without error. */\r
217         for( ;; )\r
218         {\r
219                 vTaskDelay( mainCHECK_PERIOD );\r
220 \r
221                 /* Perform a bit of 32bit maths to ensure the registers used by the \r
222                 integer tasks get some exercise. The result here is not important - \r
223                 see the demo application documentation for more info. */\r
224                 ulDummyVariable *= 3;\r
225                 \r
226                 prvCheckOtherTasksAreStillRunning();\r
227         }\r
228 }\r
229 /*-----------------------------------------------------------*/\r
230 \r
231 static void prvCheckOtherTasksAreStillRunning( void )\r
232 {\r
233 static portBASE_TYPE xErrorHasOccurred = pdFALSE;\r
234 \r
235         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
236         {\r
237                 xErrorHasOccurred = pdTRUE;\r
238         }\r
239 \r
240         if( xAreComTestTasksStillRunning() != pdTRUE )\r
241         {\r
242                 xErrorHasOccurred = pdTRUE;\r
243         }\r
244 \r
245         if( xArePollingQueuesStillRunning() != pdTRUE )\r
246         {\r
247                 xErrorHasOccurred = pdTRUE;\r
248         }\r
249 \r
250         if( xAreRegTestTasksStillRunning() != pdTRUE )\r
251         {\r
252                 xErrorHasOccurred = pdTRUE;\r
253         }\r
254         \r
255         if( xErrorHasOccurred == pdFALSE )\r
256         {\r
257                 /* Toggle the LED if everything is okay so we know if an error occurs even if not\r
258                 using console IO. */\r
259                 vParTestToggleLED( mainCHECK_TASK_LED );\r
260         }\r
261 }\r
262 /*-----------------------------------------------------------*/\r
263 \r
264 static void prvIncrementResetCount( void )\r
265 {\r
266 unsigned portCHAR ucCount;\r
267 \r
268         eeprom_read_block( &ucCount, mainRESET_COUNT_ADDRESS, sizeof( ucCount ) );\r
269         ucCount++;\r
270         eeprom_write_byte( mainRESET_COUNT_ADDRESS, ucCount );\r
271 }\r
272 /*-----------------------------------------------------------*/\r
273 \r
274 void vApplicationIdleHook( void )\r
275 {\r
276         vCoRoutineSchedule();\r
277 }\r
278 \r