]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/PIC18_WizC/Demo7/main.c
Update version numbers in preparation for new release.
[freertos] / FreeRTOS / Demo / PIC18_WizC / Demo7 / main.c
1 /*\r
2     FreeRTOS V8.2.2 - Copyright (C) 2015 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 /*\r
71 Changes from V3.0.0\r
72 \r
73 Changes from V3.0.1\r
74 */\r
75 \r
76 /*\r
77  * Instead of the normal single demo application, the PIC18F demo is split\r
78  * into several smaller programs of which this is the seventh.  This enables the\r
79  * demo's to be executed on the RAM limited PIC-devices.\r
80  *\r
81  * The Demo7 project is configured for a PIC18F4620 device.  Main.c starts 10\r
82  * tasks (including the idle task). See the indicated files in the demo/common\r
83  * directory for more information.\r
84  *\r
85  * demo/common/minimal/flash.c:         Creates 3 tasks\r
86  * demo/common/minimal/death.c:         Creates 1 controltask and\r
87  *                                                                      creates/deletes 4 suicidaltasks\r
88  *\r
89  * Main.c also creates a check task.  This periodically checks that all the\r
90  * other tasks are still running and have not experienced any unexpected\r
91  * results.  If all the other tasks are executing correctly an LED is flashed\r
92  * once every mainCHECK_PERIOD milliseconds.  If any of the tasks have not\r
93  * executed, or report an error, the frequency of the LED flash will increase\r
94  * to mainERROR_FLASH_RATE.\r
95  *\r
96  * On entry to main an 'X' is transmitted.  Monitoring the serial port using a\r
97  * dumb terminal allows for verification that the device is not continuously\r
98  * being reset (no more than one 'X' should be transmitted).\r
99  *\r
100  * http://www.FreeRTOS.org contains important information on the use of the\r
101  * wizC PIC18F port.\r
102  */\r
103 \r
104 /* Scheduler include files. */\r
105 #include <FreeRTOS.h>\r
106 #include <task.h>\r
107 \r
108 /* Demo app include files. */\r
109 #include "death.h"\r
110 #include "flash.h"\r
111 #include "partest.h"\r
112 #include "serial.h"\r
113 \r
114 /* The period between executions of the check task before and after an error\r
115 has been discovered.  If an error has been discovered the check task runs\r
116 more frequently - increasing the LED flash rate. */\r
117 #define mainNO_ERROR_CHECK_PERIOD       ( ( TickType_t ) 10000 / portTICK_PERIOD_MS )\r
118 #define mainERROR_CHECK_PERIOD          ( ( TickType_t )  1000 / portTICK_PERIOD_MS )\r
119 #define mainCHECK_TASK_LED                      ( ( unsigned char ) 3 )\r
120 \r
121 /* Priority definitions for some of the tasks.  Other tasks just use the idle\r
122 priority. */\r
123 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + ( unsigned char ) 2 )\r
124 #define mainLED_FLASH_PRIORITY          ( tskIDLE_PRIORITY + ( unsigned char ) 2 )\r
125 #define mainCREATOR_TASK_PRIORITY       ( tskIDLE_PRIORITY + ( unsigned char ) 1 )\r
126 \r
127 /* Constants required for the communications.  Only one character is ever\r
128 transmitted. */\r
129 #define mainCOMMS_QUEUE_LENGTH          ( ( unsigned char ) 5 )\r
130 #define mainNO_BLOCK                            ( ( TickType_t ) 0 )\r
131 #define mainBAUD_RATE                           ( ( unsigned long ) 57600 )\r
132 \r
133 /*\r
134  * The task function for the "Check" task.\r
135  */\r
136 static portTASK_FUNCTION_PROTO( vErrorChecks, pvParameters );\r
137 \r
138 /*\r
139  * Checks the unique counts of other tasks to ensure they are still operational.\r
140  * Returns pdTRUE if an error is detected, otherwise pdFALSE.\r
141  */\r
142 static char prvCheckOtherTasksAreStillRunning( void );\r
143 \r
144 /*-----------------------------------------------------------*/\r
145 \r
146 /* Creates the tasks, then starts the scheduler. */\r
147 void main( void )\r
148 {\r
149         /* Initialise the required hardware. */\r
150         vParTestInitialise();\r
151 \r
152         /* Send a character so we have some visible feedback of a reset. */\r
153         xSerialPortInitMinimal( mainBAUD_RATE, mainCOMMS_QUEUE_LENGTH );\r
154         xSerialPutChar( NULL, 'X', mainNO_BLOCK );\r
155 \r
156         /* Start a few of the standard demo tasks found in the demo\common directory. */\r
157         vStartLEDFlashTasks( mainLED_FLASH_PRIORITY );\r
158 \r
159         /* Start the check task defined in this file. */\r
160         xTaskCreate( vErrorChecks, "Check", portMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
161 \r
162         /* This task has to be created last as it keeps account of the number of tasks\r
163         it expects to see running. */\r
164         vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
165 \r
166         /* Start the scheduler.  Will never return here. */\r
167         vTaskStartScheduler();\r
168 \r
169         while(1)        /* This point should never be reached. */\r
170         {\r
171         }\r
172 }\r
173 /*-----------------------------------------------------------*/\r
174 \r
175 static portTASK_FUNCTION( vErrorChecks, pvParameters )\r
176 {\r
177 TickType_t xLastCheckTime;\r
178 TickType_t xDelayTime = mainNO_ERROR_CHECK_PERIOD;\r
179 char cErrorOccurred;\r
180 \r
181         /* We need to initialise xLastCheckTime prior to the first call to\r
182         vTaskDelayUntil(). */\r
183         xLastCheckTime = xTaskGetTickCount();\r
184 \r
185         /* Cycle for ever, delaying then checking all the other tasks are still\r
186         operating without error. */\r
187         for( ;; )\r
188         {\r
189                 /* Wait until it is time to check the other tasks again. */\r
190                 vTaskDelayUntil( &xLastCheckTime, xDelayTime );\r
191 \r
192                 /* Check all the other tasks are running, and running without ever\r
193                 having an error. */\r
194                 cErrorOccurred = prvCheckOtherTasksAreStillRunning();\r
195 \r
196                 /* If an error was detected increase the frequency of the LED flash. */\r
197                 if( cErrorOccurred == pdTRUE )\r
198                 {\r
199                         xDelayTime = mainERROR_CHECK_PERIOD;\r
200                 }\r
201 \r
202                 /* Flash the LED for visual feedback. */\r
203                 vParTestToggleLED( mainCHECK_TASK_LED );\r
204         }\r
205 }\r
206 /*-----------------------------------------------------------*/\r
207 \r
208 static char prvCheckOtherTasksAreStillRunning( void )\r
209 {\r
210         char cErrorHasOccurred = ( char ) pdFALSE;\r
211 \r
212         if( xIsCreateTaskStillRunning() != pdTRUE )\r
213         {\r
214                 cErrorHasOccurred = ( char ) pdTRUE;\r
215         }\r
216 \r
217         return cErrorHasOccurred;\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 \r