]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_STM32F103_IAR/main.c
Update to V4.7.0.
[freertos] / Demo / CORTEX_STM32F103_IAR / main.c
1 /*\r
2         FreeRTOS.org V4.7.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         Also see http://www.SafeRTOS.com a version that has been certified for use\r
32         in safety critical systems, plus commercial licensing, development and\r
33         support options.\r
34         ***************************************************************************\r
35 */\r
36 \r
37 /*\r
38  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
39  * documentation provides more details of the standard demo application tasks.\r
40  * In addition to the standard demo tasks, the following tasks and tests are\r
41  * defined and/or created within this file:\r
42  *\r
43  * "Fast Interrupt Test" - A high frequency periodic interrupt is generated\r
44  * using a free running timer to demonstrate the use of the\r
45  * configKERNEL_INTERRUPT_PRIORITY configuration constant.  The interrupt\r
46  * service routine measures the number of processor clocks that occur between\r
47  * each interrupt - and in so doing measures the jitter in the interrupt timing.\r
48  * The maximum measured jitter time is latched in the ulMaxJitter variable, and\r
49  * displayed on the LCD by the 'Check' task as described below.  The\r
50  * fast interrupt is configured and handled in the timertest.c source file.\r
51  *\r
52  * "LCD" task - the LCD task is a 'gatekeeper' task.  It is the only task that\r
53  * is permitted to access the display directly.  Other tasks wishing to write a\r
54  * message to the LCD send the message on a queue to the LCD task instead of\r
55  * accessing the LCD themselves.  The LCD task just blocks on the queue waiting\r
56  * for messages - waking and displaying the messages as they arrive.\r
57  *\r
58  * "Check" task -  This only executes every five seconds but has the highest\r
59  * priority so is guaranteed to get processor time.  Its main function is to\r
60  * check that all the standard demo tasks are still operational.  Should any\r
61  * unexpected behaviour within a demo task be discovered the 'check' task will\r
62  * write an error to the LCD (via the LCD task).  If all the demo tasks are\r
63  * executing with their expected behaviour then the check task writes PASS\r
64  * along with the max jitter time to the LCD (again via the LCD task), as\r
65  * described above.\r
66  *\r
67  */\r
68 \r
69 /* Standard includes. */\r
70 #include <stdio.h>\r
71 \r
72 /* Scheduler includes. */\r
73 #include "FreeRTOS.h"\r
74 #include "Task.h"\r
75 #include "Queue.h"\r
76 \r
77 /* Library includes. */\r
78 #include "stm32f10x_it.h"\r
79 \r
80 /* Demo app includes. */\r
81 #include "lcd.h"\r
82 #include "LCD_Message.h"\r
83 #include "BlockQ.h"\r
84 #include "death.h"\r
85 #include "integer.h"\r
86 #include "blocktim.h"\r
87 #include "partest.h"\r
88 #include "semtest.h"\r
89 #include "pollq.h"\r
90 #include "flash.h"\r
91 #include "comtest2.h"\r
92 \r
93 /* Task priorities. */\r
94 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
95 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
96 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
97 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
98 #define mainCREATOR_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
99 #define mainFLASH_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 1 )\r
100 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
101 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
102 \r
103 /* Constants related to the LCD. */\r
104 #define mainMAX_LINE                                            ( 240 )\r
105 #define mainROW_INCREMENT                                       ( 24 )\r
106 #define mainMAX_COLUMN                                          ( 20 )\r
107 #define mainCOLUMN_START                                        ( 319 )\r
108 #define mainCOLUMN_INCREMENT                            ( 16 )\r
109 \r
110 /* The maximum number of message that can be waiting for display at any one\r
111 time. */\r
112 #define mainLCD_QUEUE_SIZE                                      ( 3 )\r
113 \r
114 /* The check task uses the sprintf function so requires a little more stack. */\r
115 #define mainCHECK_TASK_STACK_SIZE                       ( configMINIMAL_STACK_SIZE + 50 )\r
116 \r
117 /* Dimensions the buffer into which the jitter time is written. */\r
118 #define mainMAX_MSG_LEN                                         25\r
119 \r
120 /* The time between cycles of the 'check' task. */\r
121 #define mainCHECK_DELAY                                         ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
122 \r
123 /* The number of nano seconds between each processor clock. */\r
124 #define mainNS_PER_CLOCK ( ( unsigned portLONG ) ( ( 1.0 / ( double ) configCPU_CLOCK_HZ ) * 1000000000.0 ) )\r
125 \r
126 /* Baud rate used by the comtest tasks. */\r
127 #define mainCOM_TEST_BAUD_RATE          ( 115200 )\r
128 \r
129 /* The LED used by the comtest tasks. See the comtest.c file for more\r
130 information. */\r
131 #define mainCOM_TEST_LED                        ( 3 )\r
132 \r
133 /*-----------------------------------------------------------*/\r
134 \r
135 /*\r
136  * Configure the clocks, GPIO and other peripherals as required by the demo.\r
137  */\r
138 static void prvSetupHardware( void );\r
139 \r
140 /*\r
141  * Configure the LCD as required by the demo.\r
142  */\r
143 static void prvConfigureLCD( void );\r
144 \r
145 /*\r
146  * The LCD is written two by more than one task so is controlled by a\r
147  * 'gatekeeper' task.  This is the only task that is actually permitted to\r
148  * access the LCD directly.  Other tasks wanting to display a message send\r
149  * the message to the gatekeeper.\r
150  */\r
151 static void vLCDTask( void *pvParameters );\r
152 \r
153 /*\r
154  * Retargets the C library printf function to the USART.\r
155  */\r
156 int fputc( int ch, FILE *f );\r
157 \r
158 /*\r
159  * Checks the status of all the demo tasks then prints a message to the\r
160  * display.  The message will be either PASS - and include in brackets the\r
161  * maximum measured jitter time (as described at the to of the file), or a\r
162  * message that describes which of the standard demo tasks an error has been\r
163  * discovered in.\r
164  *\r
165  * Messages are not written directly to the terminal, but passed to vLCDTask\r
166  * via a queue.\r
167  */\r
168 static void vCheckTask( void *pvParameters );\r
169 \r
170 /*\r
171  * Configures the timers and interrupts for the fast interrupt test as\r
172  * described at the top of this file.\r
173  */\r
174 extern void vSetupTimerTest( void );\r
175 \r
176 /*-----------------------------------------------------------*/\r
177 \r
178 /* The queue used to send messages to the LCD task. */\r
179 xQueueHandle xLCDQueue;\r
180 \r
181 /*-----------------------------------------------------------*/\r
182 \r
183 int main( void )\r
184 {\r
185 #ifdef DEBUG\r
186   debug();\r
187 #endif\r
188 \r
189         prvSetupHardware();\r
190 \r
191         /* Create the queue used by the LCD task.  Messages for display on the LCD\r
192         are received via this queue. */\r
193         xLCDQueue = xQueueCreate( mainLCD_QUEUE_SIZE, sizeof( xLCDMessage ) );\r
194         \r
195         /* Start the standard demo tasks. */\r
196         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
197     vCreateBlockTimeTasks();\r
198     vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
199     vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
200     vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
201         vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );\r
202         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
203 \r
204         /* Start the tasks defined within this file/specific to this demo. */\r
205     xTaskCreate( vCheckTask, ( signed portCHAR * ) "Check", mainCHECK_TASK_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );   \r
206         xTaskCreate( vLCDTask, ( signed portCHAR * ) "LCD", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
207 \r
208         /* The suicide tasks must be created last as they need to know how many\r
209         tasks were running prior to their creation in order to ascertain whether\r
210         or not the correct/expected number of tasks are running at any given time. */\r
211     vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
212         \r
213         /* Configure the timers used by the fast interrupt timer test. */\r
214         vSetupTimerTest();\r
215         \r
216         /* Start the scheduler. */\r
217         vTaskStartScheduler();\r
218         \r
219         /* Will only get here if there was not enough heap space to create the\r
220         idle task. */\r
221         return 0;\r
222 }\r
223 /*-----------------------------------------------------------*/\r
224 \r
225 void vLCDTask( void *pvParameters )\r
226 {\r
227 xLCDMessage xMessage;\r
228 \r
229         /* Initialise the LCD and display a startup message. */\r
230         prvConfigureLCD();\r
231         LCD_DrawMonoPict( ( unsigned portLONG * ) pcBitmap );\r
232 \r
233         for( ;; )\r
234         {\r
235                 /* Wait for a message to arrive that requires displaying. */\r
236                 while( xQueueReceive( xLCDQueue, &xMessage, portMAX_DELAY ) != pdPASS );\r
237 \r
238                 /* Display the message.  Print each message to a different position. */\r
239                 printf( ( portCHAR const * ) xMessage.pcMessage );\r
240         }\r
241 }\r
242 /*-----------------------------------------------------------*/\r
243 \r
244 static void vCheckTask( void *pvParameters )\r
245 {\r
246 portTickType xLastExecutionTime;\r
247 xLCDMessage xMessage;\r
248 static signed portCHAR cPassMessage[ mainMAX_MSG_LEN ];\r
249 extern unsigned portSHORT usMaxJitter;\r
250 \r
251         xLastExecutionTime = xTaskGetTickCount();\r
252         xMessage.pcMessage = cPassMessage;\r
253         \r
254     for( ;; )\r
255         {\r
256                 /* Perform this check every mainCHECK_DELAY milliseconds. */\r
257                 vTaskDelayUntil( &xLastExecutionTime, mainCHECK_DELAY );\r
258 \r
259                 /* Has an error been found in any task? */\r
260 \r
261         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
262                 {\r
263                         xMessage.pcMessage = "ERROR IN BLOCK Q\n";\r
264                 }\r
265                 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
266                 {\r
267                         xMessage.pcMessage = "ERROR IN BLOCK TIME\n";\r
268                 }\r
269         else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
270         {\r
271             xMessage.pcMessage = "ERROR IN SEMAPHORE\n";\r
272         }\r
273         else if( xArePollingQueuesStillRunning() != pdTRUE )\r
274         {\r
275             xMessage.pcMessage = "ERROR IN POLL Q\n";\r
276         }\r
277         else if( xIsCreateTaskStillRunning() != pdTRUE )\r
278         {\r
279             xMessage.pcMessage = "ERROR IN CREATE\n";\r
280         }\r
281         else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
282         {\r
283             xMessage.pcMessage = "ERROR IN MATH\n";\r
284         }\r
285                 else if( xAreComTestTasksStillRunning() != pdTRUE )\r
286                 {\r
287                         xMessage.pcMessage = "ERROR IN COM TEST\n";\r
288                 }                               \r
289                 else\r
290                 {\r
291                         sprintf( ( portCHAR * ) cPassMessage, "PASS [%uns]\n", ( ( unsigned portLONG ) usMaxJitter ) * mainNS_PER_CLOCK );\r
292                 }\r
293 \r
294                 /* Send the message to the LCD gatekeeper for display. */\r
295                 xQueueSend( xLCDQueue, &xMessage, portMAX_DELAY );\r
296         }\r
297 }\r
298 /*-----------------------------------------------------------*/\r
299 \r
300 static void prvSetupHardware( void )\r
301 {\r
302         /* Start with the clocks in their expected state. */\r
303         RCC_DeInit();\r
304 \r
305         /* Enable HSE (high speed external clock). */\r
306         RCC_HSEConfig( RCC_HSE_ON );\r
307 \r
308         /* Wait till HSE is ready. */\r
309         while( RCC_GetFlagStatus( RCC_FLAG_HSERDY ) == RESET )\r
310         {\r
311         }\r
312 \r
313         /* 2 wait states required on the flash. */\r
314         *( ( unsigned portLONG * ) 0x40022000 ) = 0x02;\r
315 \r
316         /* HCLK = SYSCLK */\r
317         RCC_HCLKConfig( RCC_SYSCLK_Div1 );\r
318 \r
319         /* PCLK2 = HCLK */\r
320         RCC_PCLK2Config( RCC_HCLK_Div1 );\r
321 \r
322         /* PCLK1 = HCLK/2 */\r
323         RCC_PCLK1Config( RCC_HCLK_Div2 );\r
324 \r
325         /* PLLCLK = 8MHz * 9 = 72 MHz. */\r
326         RCC_PLLConfig( RCC_PLLSource_HSE_Div1, RCC_PLLMul_9 );\r
327 \r
328         /* Enable PLL. */\r
329         RCC_PLLCmd( ENABLE );\r
330 \r
331         /* Wait till PLL is ready. */\r
332         while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)\r
333         {\r
334         }\r
335 \r
336         /* Select PLL as system clock source. */\r
337         RCC_SYSCLKConfig( RCC_SYSCLKSource_PLLCLK );\r
338 \r
339         /* Wait till PLL is used as system clock source. */\r
340         while( RCC_GetSYSCLKSource() != 0x08 )\r
341         {\r
342         }\r
343 \r
344         /* Enable GPIOA, GPIOB, GPIOC, GPIOD, GPIOE and AFIO clocks */\r
345         RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIOB |RCC_APB2Periph_GPIOC\r
346                                                         | RCC_APB2Periph_GPIOD | RCC_APB2Periph_GPIOE | RCC_APB2Periph_AFIO, ENABLE );\r
347 \r
348         /* SPI2 Periph clock enable */\r
349         RCC_APB1PeriphClockCmd( RCC_APB1Periph_SPI2, ENABLE );\r
350 \r
351 \r
352         /* Set the Vector Table base address at 0x08000000 */\r
353         NVIC_SetVectorTable( NVIC_VectTab_FLASH, 0x0 );\r
354 \r
355         NVIC_PriorityGroupConfig( NVIC_PriorityGroup_4 );\r
356         \r
357         /* Configure HCLK clock as SysTick clock source. */\r
358         SysTick_CLKSourceConfig( SysTick_CLKSource_HCLK );\r
359         \r
360         vParTestInitialise();\r
361 }\r
362 /*-----------------------------------------------------------*/\r
363 \r
364 static void prvConfigureLCD( void )\r
365 {\r
366 GPIO_InitTypeDef GPIO_InitStructure;\r
367 \r
368         /* Configure LCD Back Light (PA8) as output push-pull */\r
369         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;\r
370         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;\r
371         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;\r
372         GPIO_Init( GPIOA, &GPIO_InitStructure );\r
373 \r
374         /* Set the Backlight Pin */\r
375         GPIO_WriteBit(GPIOA, GPIO_Pin_8, Bit_SET);\r
376 \r
377         /* Initialize the LCD */\r
378         LCD_Init();\r
379 \r
380         /* Set the Back Color */\r
381         LCD_SetBackColor( White );\r
382 \r
383         /* Set the Text Color */\r
384         LCD_SetTextColor( 0x051F );\r
385 \r
386         LCD_Clear();\r
387 }\r
388 /*-----------------------------------------------------------*/\r
389 \r
390 int fputc( int ch, FILE *f )\r
391 {\r
392 static unsigned portSHORT usColumn = 0, usRefColumn = mainCOLUMN_START;\r
393 static unsigned portCHAR ucLine = 0;\r
394 \r
395         if( ( usColumn == 0 ) && ( ucLine == 0 ) )\r
396         {\r
397                 LCD_Clear();\r
398         }\r
399 \r
400         if( ch != '\n' )\r
401         {\r
402                 /* Display one character on LCD */\r
403                 LCD_DisplayChar( ucLine, usRefColumn, (u8) ch );\r
404                 \r
405                 /* Decrement the column position by 16 */\r
406                 usRefColumn -= mainCOLUMN_INCREMENT;\r
407                 \r
408                 /* Increment the character counter */\r
409                 usColumn++;\r
410                 if( usColumn == mainMAX_COLUMN )\r
411                 {\r
412                         ucLine += mainROW_INCREMENT;\r
413                         usRefColumn = mainCOLUMN_START;\r
414                         usColumn = 0;\r
415                 }\r
416         }\r
417         else\r
418         {\r
419                 /* Move back to the first column of the next line. */\r
420                 ucLine += mainROW_INCREMENT;\r
421                 usRefColumn = mainCOLUMN_START;\r
422                 usColumn = 0;   \r
423         }\r
424 \r
425         /* Wrap back to the top of the display. */\r
426         if( ucLine >= mainMAX_LINE )\r
427         {\r
428                 ucLine = 0;\r
429         }\r
430         \r
431         return ch;\r
432 }\r
433 /*-----------------------------------------------------------*/\r
434 \r
435 #ifdef  DEBUG\r
436 /* Keep the linker happy. */\r
437 void assert_failed( unsigned portCHAR* pcFile, unsigned portLONG ulLine )\r
438 {\r
439         for( ;; )\r
440         {\r
441         }\r
442 }\r
443 #endif\r