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