]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/AVR_ATMega323_IAR/main.c
Update to MIT licensed FreeRTOS V10.0.0 - see https://www.freertos.org/History.txt
[freertos] / FreeRTOS / Demo / AVR_ATMega323_IAR / main.c
1 /*\r
2  * FreeRTOS Kernel V10.0.0\r
3  * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software. If you wish to use our Amazon\r
14  * FreeRTOS name, please do so in a fair use way that does not cause confusion.\r
15  *\r
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
18  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
19  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
20  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
21  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
22  *\r
23  * http://www.FreeRTOS.org\r
24  * http://aws.amazon.com/freertos\r
25  *\r
26  * 1 tab == 4 spaces!\r
27  */\r
28 \r
29 /*\r
30  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
31  * documentation provides more details of the demo application tasks.\r
32  *\r
33  * Main. c also creates a task called "Check".  This only executes every three\r
34  * seconds but has the highest priority so is guaranteed to get processor time.\r
35  * Its main function is to check that all the other tasks are still operational.\r
36  * Each task that does not flash an LED maintains a unique count that is\r
37  * incremented each time the task successfully completes its function.  Should\r
38  * any error occur within such a task the count is permanently halted.  The\r
39  * check task inspects the count of each task to ensure it has changed since\r
40  * the last time the check task executed.  If all the count variables have\r
41  * changed all the tasks are still executing error free, and the check task\r
42  * toggles an LED.  Should any task contain an error at any time the LED toggle\r
43  * will stop.\r
44  *\r
45  * The LED flash and communications test tasks do not maintain a count.\r
46  */\r
47 \r
48 /*\r
49 Changes from V1.2.0\r
50         \r
51         + Changed the baud rate for the serial test from 19200 to 57600.\r
52 \r
53 Changes from V1.2.3\r
54 \r
55         + The integer and comtest tasks are now used when the cooperative scheduler\r
56           is being used.  Previously they were only used with the preemptive\r
57           scheduler.\r
58 \r
59 Changes from V1.2.5\r
60 \r
61         + Set the baud rate to 38400.  This has a smaller error percentage with an\r
62           8MHz clock (according to the manual).\r
63 \r
64 Changes from V2.0.0\r
65 \r
66         + Delay periods are now specified using variables and constants of\r
67           TickType_t rather than unsigned long.\r
68 \r
69 Changes from V2.2.0\r
70 \r
71         + File can now be built using either the IAR or WinAVR compiler.\r
72 \r
73 Changes from V2.6.1\r
74 \r
75         + The IAR and WinAVR AVR ports are now maintained separately.\r
76 \r
77 Changes from V4.0.5\r
78 \r
79         + Modified to demonstrate the use of co-routines.\r
80 */\r
81 \r
82 #include <stdlib.h>\r
83 #include <string.h>\r
84 \r
85 #ifdef GCC_MEGA_AVR\r
86         /* EEPROM routines used only with the WinAVR compiler. */\r
87         #include <avr/eeprom.h>\r
88 #endif\r
89 \r
90 /* Scheduler include files. */\r
91 #include "FreeRTOS.h"\r
92 #include "task.h"\r
93 #include "croutine.h"\r
94 \r
95 /* Demo file headers. */\r
96 #include "PollQ.h"\r
97 #include "integer.h"\r
98 #include "serial.h"\r
99 #include "comtest.h"\r
100 #include "crflash.h"\r
101 #include "print.h"\r
102 #include "partest.h"\r
103 #include "regtest.h"\r
104 \r
105 /* Priority definitions for most of the tasks in the demo application.  Some\r
106 tasks just use the idle priority. */\r
107 #define mainLED_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
108 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
109 #define mainQUEUE_POLL_PRIORITY                 ( tskIDLE_PRIORITY + 2 )\r
110 #define mainCHECK_TASK_PRIORITY                 ( tskIDLE_PRIORITY + 3 )\r
111 \r
112 /* Baud rate used by the serial port tasks. */\r
113 #define mainCOM_TEST_BAUD_RATE                  ( ( unsigned long ) 38400 )\r
114 \r
115 /* LED used by the serial port tasks.  This is toggled on each character Tx,\r
116 and mainCOM_TEST_LED + 1 is toggles on each character Rx. */\r
117 #define mainCOM_TEST_LED                                ( 4 )\r
118 \r
119 /* LED that is toggled by the check task.  The check task periodically checks\r
120 that all the other tasks are operating without error.  If no errors are found\r
121 the LED is toggled.  If an error is found at any time the LED is never toggles\r
122 again. */\r
123 #define mainCHECK_TASK_LED                              ( 7 )\r
124 \r
125 /* The period between executions of the check task. */\r
126 #define mainCHECK_PERIOD                                ( ( TickType_t ) 3000 / portTICK_PERIOD_MS  )\r
127 \r
128 /* An address in the EEPROM used to count resets.  This is used to check that\r
129 the demo application is not unexpectedly resetting. */\r
130 #define mainRESET_COUNT_ADDRESS                 ( ( void * ) 0x50 )\r
131 \r
132 /* The number of coroutines to create. */\r
133 #define mainNUM_FLASH_COROUTINES                ( 3 )\r
134 \r
135 /*\r
136  * The task function for the "Check" task.\r
137  */\r
138 static void vErrorChecks( void *pvParameters );\r
139 \r
140 /*\r
141  * Checks the unique counts of other tasks to ensure they are still operational.\r
142  * Flashes an LED if everything is okay.\r
143  */\r
144 static void prvCheckOtherTasksAreStillRunning( void );\r
145 \r
146 /*\r
147  * Called on boot to increment a count stored in the EEPROM.  This is used to\r
148  * ensure the CPU does not reset unexpectedly.\r
149  */\r
150 static void prvIncrementResetCount( void );\r
151 \r
152 /*\r
153  * Idle hook is used to scheduler co-routines.\r
154  */\r
155 void vApplicationIdleHook( void );      \r
156 \r
157 short main( void )\r
158 {\r
159         prvIncrementResetCount();\r
160 \r
161         /* Setup the LED's for output. */\r
162         vParTestInitialise();\r
163 \r
164         /* Create the standard demo tasks. */\r
165         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
166         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
167         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
168         vStartRegTestTasks();\r
169         \r
170         /* Create the tasks defined within this file. */\r
171         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
172 \r
173         /* Create the co-routines that flash the LED's. */\r
174         vStartFlashCoRoutines( mainNUM_FLASH_COROUTINES );\r
175         \r
176         /* In this port, to use preemptive scheduler define configUSE_PREEMPTION\r
177         as 1 in portmacro.h.  To use the cooperative scheduler define\r
178         configUSE_PREEMPTION as 0. */\r
179         vTaskStartScheduler();\r
180 \r
181         return 0;\r
182 }\r
183 /*-----------------------------------------------------------*/\r
184 \r
185 static void vErrorChecks( void *pvParameters )\r
186 {\r
187 static volatile unsigned long ulDummyVariable = 3UL;\r
188 \r
189         /* The parameters are not used. */\r
190         ( void ) pvParameters;\r
191 \r
192         /* Cycle for ever, delaying then checking all the other tasks are still\r
193         operating without error. */\r
194         for( ;; )\r
195         {\r
196                 vTaskDelay( mainCHECK_PERIOD );\r
197 \r
198                 /* Perform a bit of 32bit maths to ensure the registers used by the\r
199                 integer tasks get some exercise. The result here is not important -\r
200                 see the demo application documentation for more info. */\r
201                 ulDummyVariable *= 3;\r
202                 \r
203                 prvCheckOtherTasksAreStillRunning();\r
204         }\r
205 }\r
206 /*-----------------------------------------------------------*/\r
207 \r
208 static void prvCheckOtherTasksAreStillRunning( void )\r
209 {\r
210 static portBASE_TYPE xErrorHasOccurred = pdFALSE;\r
211 \r
212         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
213         {\r
214                 xErrorHasOccurred = pdTRUE;\r
215         }\r
216 \r
217         if( xAreComTestTasksStillRunning() != pdTRUE )\r
218         {\r
219                 xErrorHasOccurred = pdTRUE;\r
220         }\r
221 \r
222         if( xArePollingQueuesStillRunning() != pdTRUE )\r
223         {\r
224                 xErrorHasOccurred = pdTRUE;\r
225         }\r
226 \r
227         if( xAreRegTestTasksStillRunning() != pdTRUE )\r
228         {\r
229                 xErrorHasOccurred = pdTRUE;\r
230         }\r
231         \r
232         if( xErrorHasOccurred == pdFALSE )\r
233         {\r
234                 /* Toggle the LED if everything is okay so we know if an error occurs even if not\r
235                 using console IO. */\r
236                 vParTestToggleLED( mainCHECK_TASK_LED );\r
237         }\r
238 }\r
239 /*-----------------------------------------------------------*/\r
240 \r
241 static void prvIncrementResetCount( void )\r
242 {\r
243 unsigned char ucCount;\r
244 const unsigned char ucReadBit = ( unsigned char ) 0x01;\r
245 const unsigned char ucWrite1 = ( unsigned char ) 0x04;\r
246 const unsigned char ucWrite2 = ( unsigned char ) 0x02;\r
247 \r
248         /* Increment the EEPROM value at 0x00.\r
249         \r
250         Setup the EEPROM address. */\r
251         EEARH = 0x00;\r
252         EEARL = 0x00;\r
253         \r
254         /* Set the read enable bit. */\r
255         EECR |= ucReadBit;\r
256 \r
257         /* Wait for the read. */\r
258         while( EECR & ucReadBit );\r
259         \r
260         /* The byte is ready. */\r
261         ucCount = EEDR;\r
262         \r
263         /* Increment the reset count, then write the byte back. */\r
264         ucCount++;\r
265         EEDR = ucCount;\r
266         EECR = ucWrite1;\r
267         EECR = ( ucWrite1 | ucWrite2 );\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 void vApplicationIdleHook( void )\r
272 {\r
273         vCoRoutineSchedule();\r
274 }\r
275 \r