]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_LM3S6965_KEIL/main.c
Update to V4.3.0 as described in http://www.FreeRTOS.org/History.txt
[freertos] / Demo / CORTEX_LM3S6965_KEIL / main.c
1 /*\r
2         FreeRTOS.org V4.3.0 - Copyright (C) 2003-2007 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         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 /*\r
35  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
36  * documentation provides more details of the standard demo application tasks.\r
37  * In addition to the standard demo tasks, the following tasks and tests are\r
38  * defined and/or created within this file:\r
39  *\r
40  * "Fast Interrupt Test" - A high frequency periodic interrupt is generated\r
41  * using a free running timer to demonstrate the use of the\r
42  * configKERNEL_INTERRUPT_PRIORITY configuration constant.  The interrupt\r
43  * service routine measures the number of processor clocks that occur between\r
44  * each interrupt - and in so doing measures the jitter in the interrupt timing.\r
45  * The maximum measured jitter time is latched in the ulMaxJitter variable, and\r
46  * displayed on the OLED display by the 'Check' task as described below.  The\r
47  * fast interrupt is configured and handled in the timertest.c source file.\r
48  *\r
49  * "OLED" task - the OLED task is a 'gatekeeper' task.  It is the only task that\r
50  * is permitted to access the display directly.  Other tasks wishing to write a\r
51  * message to the OLED send the message on a queue to the OLED task instead of\r
52  * accessing the OLED themselves.  The OLED task just blocks on the queue waiting\r
53  * for messages - waking and displaying the messages as they arrive.\r
54  *\r
55  * "Check" task -  This only executes every five seconds but has the highest\r
56  * priority so is guaranteed to get processor time.  Its main function is to\r
57  * check that all the standard demo tasks are still operational.  Should any\r
58  * unexpected behaviour within a demo task be discovered the 'check' task will\r
59  * write an error to the OLED (via the OLED task).  If all the demo tasks are\r
60  * executing with their expected behaviour then the check task writes PASS\r
61  * along with the max jitter time to the OLED (again via the OLED task), as\r
62  * described above.\r
63  *\r
64  * "uIP" task -  This is the task that handles the uIP stack.  All TCP/IP\r
65  * processing is performed in this task.\r
66  */\r
67 \r
68 \r
69 \r
70 /* Standard includes. */\r
71 #include <stdio.h>\r
72 \r
73 /* Scheduler includes. */\r
74 #include "FreeRTOS.h"\r
75 #include "Task.h"\r
76 #include "queue.h"\r
77 #include "semphr.h"\r
78 \r
79 /* Demo app includes. */\r
80 #include "BlockQ.h"\r
81 #include "death.h"\r
82 #include "integer.h"\r
83 #include "blocktim.h"\r
84 #include "flash.h"\r
85 #include "partest.h"\r
86 #include "semtest.h"\r
87 #include "pollq.h"\r
88 #include "lcd_message.h"\r
89 #include "bitmap.h"\r
90 \r
91 /* Hardware library includes. */\r
92 #include "hw_memmap.h"\r
93 #include "hw_types.h"\r
94 #include "sysctl.h"\r
95 #include "gpio.h"\r
96 #include "osram128x64x4.h"\r
97 \r
98 /*-----------------------------------------------------------*/\r
99 \r
100 /* The time between cycles of the 'check' task. */\r
101 #define mainCHECK_DELAY                                         ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
102 \r
103 /* Size of the stack allocated to the uIP task. */\r
104 #define mainBASIC_WEB_STACK_SIZE            ( 200 )\r
105 \r
106 /* The check task uses the sprintf function so requires a little more stack too. */\r
107 #define mainCHECK_TASK_STACK_SIZE                       ( configMINIMAL_STACK_SIZE + 50 )\r
108 \r
109 /* Task priorities. */\r
110 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
111 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
112 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
113 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
114 #define mainCREATOR_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
115 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
116 \r
117 /* The maximum number of message that can be waiting for display at any one\r
118 time. */\r
119 #define mainOLED_QUEUE_SIZE                                     ( 3 )\r
120 \r
121 /* Dimensions the buffer into which the jitter time is written. */\r
122 #define mainMAX_MSG_LEN                                         25\r
123 \r
124 /* The period of the system clock in nano seconds.  This is used to calculate\r
125 the jitter time in nano seconds. */\r
126 #define mainNS_PER_CLOCK                                        ( ( unsigned portLONG ) ( ( 1.0 / ( double ) configCPU_CLOCK_HZ ) * 1000000000.0 ) )\r
127 \r
128 /* Constants used when writing strings to the display. */\r
129 #define mainCHARACTER_HEIGHT                            ( 9 )\r
130 #define mainMAX_ROWS                                            ( mainCHARACTER_HEIGHT * 7 )\r
131 #define mainFULL_SCALE                                          ( 15 )\r
132 #define ulSSI_FREQUENCY                                         1000000\r
133 \r
134 /*-----------------------------------------------------------*/\r
135 \r
136 /*\r
137  * Checks the status of all the demo tasks then prints a message to the\r
138  * display.  The message will be either PASS - an include in brackets the\r
139  * maximum measured jitter time (as described at the to of the file), or a\r
140  * message that describes which of the standard demo tasks an error has been\r
141  * discovered in.\r
142  *\r
143  * Messages are not written directly to the terminal, but passed to vOLEDTask\r
144  * via a queue.\r
145  */\r
146 static void vCheckTask( void *pvParameters );\r
147 \r
148 /*\r
149  * The task that handles the uIP stack.  All TCP/IP processing is performed in\r
150  * this task.\r
151  */\r
152 extern void vuIP_Task( void *pvParameters );\r
153 \r
154 /*\r
155  * The display is written two by more than one task so is controlled by a\r
156  * 'gatekeeper' task.  This is the only task that is actually permitted to\r
157  * access the display directly.  Other tasks wanting to display a message send\r
158  * the message to the gatekeeper.\r
159  */\r
160 static void vOLEDTask( void *pvParameters );\r
161 \r
162 /*\r
163  * Configure the hardware for the demo.\r
164  */\r
165 static void prvSetupHardware( void );\r
166 \r
167 /*\r
168  * Configures the high frequency timers - those used to measure the timing\r
169  * jitter while the real time kernel is executing.\r
170  */\r
171 extern void vSetupTimer( void );\r
172 \r
173 /*-----------------------------------------------------------*/\r
174 \r
175 /* The queue used to send messages to the OLED task. */\r
176 xQueueHandle xOLEDQueue;\r
177 \r
178 /* The welcome text. */\r
179 const portCHAR * const pcWelcomeMessage = "   www.FreeRTOS.org";\r
180 \r
181 /*-----------------------------------------------------------*/\r
182 \r
183 int main( void )\r
184 {\r
185         prvSetupHardware();\r
186 \r
187         /* Create the queue used by the OLED task.  Messages for display on the OLED\r
188         are received via this queue. */\r
189         xOLEDQueue = xQueueCreate( mainOLED_QUEUE_SIZE, sizeof( xOLEDMessage ) );\r
190 \r
191         /* Create the uIP task. */\r
192     xTaskCreate( vuIP_Task, ( signed portCHAR * ) "uIP", mainBASIC_WEB_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY - 1, NULL );\r
193 \r
194         /* Start the standard demo tasks. */\r
195         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
196     vCreateBlockTimeTasks();\r
197     vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
198     vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
199     vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
200 \r
201         /* Start the tasks defined within this file/specific to this demo. */\r
202     xTaskCreate( vCheckTask, ( signed portCHAR * ) "Check", mainCHECK_TASK_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
203         xTaskCreate( vOLEDTask, ( signed portCHAR * ) "OLED", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
204 \r
205         /* The suicide tasks must be created last as they need to know how many\r
206         tasks were running prior to their creation in order to ascertain whether\r
207         or not the correct/expected number of tasks are running at any given time. */\r
208     vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
209 \r
210         /* Configure the high frequency interrupt used to measure the interrupt\r
211         jitter time. */\r
212         #ifdef __ICCARM__\r
213                 vSetupTimer();\r
214         #endif\r
215         \r
216         /* Start the scheduler. */\r
217         vTaskStartScheduler();\r
218 \r
219     /* Will only get here if there was insufficient memory to create the idle\r
220     task. */\r
221         return 0;\r
222 }\r
223 /*-----------------------------------------------------------*/\r
224 \r
225 void prvSetupHardware( void )\r
226 {\r
227         /* Set the clocking to run from the PLL at 50 MHz */\r
228         SysCtlClockSet( SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN | SYSCTL_XTAL_8MHZ );\r
229         \r
230         /* Enable/Reset the Ethernet Controller */\r
231         SysCtlPeripheralEnable( SYSCTL_PERIPH_ETH );\r
232         SysCtlPeripheralReset( SYSCTL_PERIPH_ETH );\r
233         \r
234         /*      Enable Port F for Ethernet LEDs\r
235                 LED0        Bit 3   Output\r
236                 LED1        Bit 2   Output */\r
237         SysCtlPeripheralEnable( SYSCTL_PERIPH_GPIOF );\r
238         GPIODirModeSet( GPIO_PORTF_BASE, (GPIO_PIN_2 | GPIO_PIN_3), GPIO_DIR_MODE_HW );\r
239         GPIOPadConfigSet( GPIO_PORTF_BASE, (GPIO_PIN_2 | GPIO_PIN_3 ), GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD );  \r
240         \r
241         vParTestInitialise();\r
242 }\r
243 /*-----------------------------------------------------------*/\r
244 \r
245 static void vCheckTask( void *pvParameters )\r
246 {\r
247 portTickType xLastExecutionTime;\r
248 xOLEDMessage xMessage;\r
249 static portCHAR cPassMessage[ mainMAX_MSG_LEN ];\r
250 extern unsigned portLONG ulMaxJitter;\r
251 \r
252         xLastExecutionTime = xTaskGetTickCount();\r
253         xMessage.pcMessage = cPassMessage;\r
254         \r
255     for( ;; )\r
256         {\r
257                 /* Perform this check every mainCHECK_DELAY milliseconds. */\r
258                 vTaskDelayUntil( &xLastExecutionTime, mainCHECK_DELAY );\r
259 \r
260                 /* Has an error been found in any task? */\r
261 \r
262         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
263                 {\r
264                         xMessage.pcMessage = "ERROR IN BLOCK Q";\r
265                 }\r
266                 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
267                 {\r
268                         xMessage.pcMessage = "ERROR IN BLOCK TIME";\r
269                 }\r
270         else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
271         {\r
272             xMessage.pcMessage = "ERROR IN SEMAPHORE";\r
273         }\r
274         else if( xArePollingQueuesStillRunning() != pdTRUE )\r
275         {\r
276             xMessage.pcMessage = "ERROR IN POLL Q";\r
277         }\r
278         else if( xIsCreateTaskStillRunning() != pdTRUE )\r
279         {\r
280             xMessage.pcMessage = "ERROR IN CREATE";\r
281         }\r
282         else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
283         {\r
284             xMessage.pcMessage = "ERROR IN MATH";\r
285         }\r
286                 else\r
287                 {\r
288                         #ifdef __ICCARM__\r
289                                 sprintf( cPassMessage, "PASS [%uns]", ulMaxJitter * mainNS_PER_CLOCK );\r
290                         #else\r
291                                 sprintf( cPassMessage, "PASS" );\r
292                         #endif\r
293                 }\r
294 \r
295                 /* Send the message to the OLED gatekeeper for display. */\r
296                 xQueueSend( xOLEDQueue, &xMessage, portMAX_DELAY );\r
297         }\r
298 }\r
299 /*-----------------------------------------------------------*/\r
300 \r
301 \r
302 \r
303 void vOLEDTask( void *pvParameters )\r
304 {\r
305 xOLEDMessage xMessage;\r
306 unsigned portLONG ulY = mainMAX_ROWS;\r
307 \r
308         /* Initialise the OLED and display a startup message. */\r
309         OSRAM128x64x4Init( ulSSI_FREQUENCY );   \r
310         \r
311         OSRAM128x64x4StringDraw( " POWERED BY FreeRTOS", 0, 0, mainFULL_SCALE );\r
312         OSRAM128x64x4ImageDraw( pucImage, 0, mainCHARACTER_HEIGHT + 1, bmpBITMAP_WIDTH, bmpBITMAP_HEIGHT );\r
313         \r
314         for( ;; )\r
315         {\r
316                 /* Wait for a message to arrive that requires displaying. */\r
317                 xQueueReceive( xOLEDQueue, &xMessage, portMAX_DELAY );\r
318         \r
319                 /* Write the message on the next available row. */\r
320                 ulY += mainCHARACTER_HEIGHT;\r
321                 if( ulY >= mainMAX_ROWS )\r
322                 {\r
323                         ulY = mainCHARACTER_HEIGHT;\r
324                         OSRAM128x64x4Clear();\r
325                         OSRAM128x64x4StringDraw( pcWelcomeMessage, 0, 0, mainFULL_SCALE );                      \r
326                 }\r
327 \r
328                 /* Display the message. */\r
329                 OSRAM128x64x4StringDraw( xMessage.pcMessage, 0, ulY, mainFULL_SCALE );\r
330         }\r
331 }\r