]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_LM3S316_IAR/commstest.c
Update to V4.7.0.
[freertos] / Demo / CORTEX_LM3S316_IAR / commstest.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  * The comms test Rx and Tx task and co-routine.  See the comments at the top\r
39  * of main.c for full information.\r
40  */\r
41 \r
42 \r
43 /* Scheduler include files. */\r
44 #include "FreeRTOS.h"\r
45 #include "task.h"\r
46 #include "queue.h"\r
47 #include "croutine.h"\r
48 \r
49 /* Demo application include files. */\r
50 #include "partest.h"\r
51 \r
52 /* Library include files. */\r
53 #include "DriverLib.h"\r
54 \r
55 /* The LED's toggled by the various tasks. */\r
56 #define commsFAIL_LED                   ( 7 )\r
57 #define commsRX_LED                     ( 6 )\r
58 #define commsTX_LED                     ( 5 )\r
59 \r
60 /* The length of the queue used to pass received characters to the Comms Rx\r
61 task. */\r
62 #define commsRX_QUEUE_LEN                       ( 5 )\r
63 \r
64 /* The baud rate used by the UART comms tasks/co-routine. */\r
65 #define commsBAUD_RATE                          ( 57600 )\r
66 \r
67 /* FIFO setting for the UART.  The FIFO is not used to create a better test. */\r
68 #define commsFIFO_SET                           ( 0x10 )\r
69 \r
70 /* The string that is transmitted on the UART contains sequentially the \r
71 characters from commsFIRST_TX_CHAR to commsLAST_TX_CHAR. */\r
72 #define commsFIRST_TX_CHAR '0'\r
73 #define commsLAST_TX_CHAR 'z'\r
74 \r
75 /* Just used to walk through the program memory in order that some random data\r
76 can be generated. */\r
77 #define commsTOTAL_PROGRAM_MEMORY ( ( unsigned portLONG * ) ( 8 * 1024 ) )\r
78 #define commsFIRST_PROGRAM_BYTES ( ( unsigned portLONG * ) 4 )\r
79 \r
80 /* The time between transmissions of the string on UART 0.   This is pseudo\r
81 random in order to generate a bit or randomness to when the interrupts occur.*/\r
82 #define commsMIN_TX_DELAY                       ( 40 / portTICK_RATE_MS )\r
83 #define commsMAX_TX_DELAY                       ( ( portTickType ) 0x7f )\r
84 #define commsOFFSET_TIME                        ( ( portTickType ) 3 )\r
85 \r
86 /* The time the Comms Rx task should wait to receive a character.  This should\r
87 be slightly longer than the time between transmissions.  If we do not receive\r
88 a character after this time then there must be an error in the transmission or\r
89 the timing of the transmission. */\r
90 #define commsRX_DELAY                   ( commsMAX_TX_DELAY + 20 )\r
91 \r
92 \r
93 static unsigned portBASE_TYPE uxCommsErrorStatus = pdPASS;\r
94 \r
95 /* The queue used to pass characters out of the ISR. */\r
96 static xQueueHandle xCommsQueue;\r
97 \r
98 /* The next character to transmit. */\r
99 static portCHAR cNextChar;\r
100 \r
101 /*-----------------------------------------------------------*/\r
102 \r
103 void vSerialInit( void )\r
104 {\r
105         /* Create the queue used to communicate between the UART ISR and the Comms\r
106         Rx task. */\r
107         xCommsQueue = xQueueCreate( commsRX_QUEUE_LEN, sizeof( portCHAR ) );\r
108 \r
109         /* Enable the UART.  GPIOA has already been initialised. */\r
110         SysCtlPeripheralEnable(SYSCTL_PERIPH_UART0);\r
111 \r
112         /* Set GPIO A0 and A1 as peripheral function.  They are used to output the\r
113         UART signals. */\r
114         GPIODirModeSet( GPIO_PORTA_BASE, GPIO_PIN_0 | GPIO_PIN_1, GPIO_DIR_MODE_HW );\r
115 \r
116         /* Configure the UART for 8-N-1 operation. */\r
117         UARTConfigSet( UART0_BASE, commsBAUD_RATE, UART_CONFIG_WLEN_8 | UART_CONFIG_PAR_NONE | UART_CONFIG_STOP_ONE );\r
118 \r
119         /* We dont want to use the fifo.  This is for test purposes to generate\r
120         as many interrupts as possible. */\r
121         HWREG( UART0_BASE + UART_O_LCR_H ) &= ~commsFIFO_SET;\r
122 \r
123         /* Enable both Rx and Tx interrupts. */\r
124         HWREG( UART0_BASE + UART_O_IM ) |= ( UART_INT_TX | UART_INT_RX );\r
125         IntEnable( INT_UART0 );\r
126 }\r
127 /*-----------------------------------------------------------*/\r
128 \r
129 void vSerialTxCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
130 {\r
131 portTickType xDelayPeriod;\r
132 static unsigned portLONG *pulRandomBytes = commsFIRST_PROGRAM_BYTES;\r
133 \r
134         /* Co-routine MUST start with a call to crSTART. */\r
135         crSTART( xHandle );\r
136 \r
137         for(;;)\r
138     {   \r
139                 /* Was the previously transmitted string received correctly? */\r
140                 if( uxCommsErrorStatus != pdPASS )\r
141                 {\r
142                         /* An error was encountered so set the error LED. */\r
143                         vParTestSetLED( commsFAIL_LED, pdTRUE );\r
144                 }\r
145 \r
146                 /* The next character to Tx is the first in the string. */\r
147                 cNextChar = commsFIRST_TX_CHAR;\r
148 \r
149                 UARTIntDisable( UART0_BASE, UART_INT_TX );\r
150                 {\r
151                         /* Send the first character. */\r
152                         if( !( HWREG( UART0_BASE + UART_O_FR ) & UART_FR_TXFF ) )\r
153                         {\r
154                                 HWREG( UART0_BASE + UART_O_DR ) = cNextChar;\r
155                         }\r
156 \r
157                         /* Move the variable to the char to Tx on so the ISR transmits\r
158                         the next character in the string once this one has completed. */\r
159                         cNextChar++;\r
160                 }\r
161                 UARTIntEnable(UART0_BASE, UART_INT_TX);\r
162 \r
163                 /* Toggle the LED to show a new string is being transmitted. */\r
164         vParTestToggleLED( commsTX_LED );\r
165 \r
166                 /* Delay before we start the string off again.  A pseudo-random delay\r
167                 is used as this will provide a better test. */\r
168                 xDelayPeriod = xTaskGetTickCount() + ( *pulRandomBytes );\r
169 \r
170                 pulRandomBytes++;\r
171                 if( pulRandomBytes > commsTOTAL_PROGRAM_MEMORY )\r
172                 {\r
173                         pulRandomBytes = commsFIRST_PROGRAM_BYTES;\r
174                 }\r
175 \r
176                 /* Make sure we don't wait too long... */\r
177                 xDelayPeriod &= commsMAX_TX_DELAY;\r
178 \r
179                 /* ...but we do want to wait. */\r
180                 if( xDelayPeriod < commsMIN_TX_DELAY )\r
181                 {\r
182                         xDelayPeriod = commsMIN_TX_DELAY;\r
183                 }\r
184 \r
185                 /* Block for the random(ish) time. */\r
186                 crDELAY( xHandle, xDelayPeriod );\r
187     }\r
188 \r
189         /* Co-routine MUST end with a call to crEND. */\r
190         crEND();\r
191 }\r
192 /*-----------------------------------------------------------*/\r
193 \r
194 void vUART_ISR( void )\r
195 {\r
196 unsigned portLONG ulStatus;\r
197 portCHAR cRxedChar;\r
198 portBASE_TYPE xTaskWokenByPost = pdFALSE;\r
199 \r
200         /* What caused the interrupt. */\r
201         ulStatus = UARTIntStatus( UART0_BASE, pdTRUE );\r
202 \r
203         /* Clear the interrupt. */\r
204         UARTIntClear( UART0_BASE, ulStatus );\r
205 \r
206         /* Was an Rx interrpt pending? */\r
207         if( ulStatus & UART_INT_RX )\r
208         {\r
209                 if( ( HWREG(UART0_BASE + UART_O_FR ) & UART_FR_RXFF ) )\r
210                 {\r
211                         /* Get the char from the buffer and post it onto the queue of\r
212                         Rxed chars.  Posting the character should wake the task that is \r
213                         blocked on the queue waiting for characters. */\r
214                         cRxedChar = ( portCHAR ) HWREG( UART0_BASE + UART_O_DR );\r
215                         xTaskWokenByPost = xQueueSendFromISR( xCommsQueue, &cRxedChar, xTaskWokenByPost );\r
216                 }               \r
217         }\r
218 \r
219         /* Was a Tx interrupt pending? */\r
220         if( ulStatus & UART_INT_TX )\r
221         {\r
222                 /* Send the next character in the string.  We are not using the FIFO. */\r
223                 if( cNextChar <= commsLAST_TX_CHAR )\r
224                 {\r
225                         if( !( HWREG( UART0_BASE + UART_O_FR ) & UART_FR_TXFF ) )\r
226                         {\r
227                                 HWREG( UART0_BASE + UART_O_DR ) = cNextChar;\r
228                         }\r
229                         cNextChar++;\r
230                 }\r
231         }\r
232         \r
233         if( xTaskWokenByPost )\r
234         {\r
235                 /* If a task was woken by the character being received then we force\r
236                 a context switch to occur in case the task is of higher priority than\r
237                 the currently executing task (i.e. the task that this interrupt \r
238                 interrupted.) */\r
239                 portEND_SWITCHING_ISR( xTaskWokenByPost );\r
240         }\r
241 }\r
242 /*-----------------------------------------------------------*/\r
243 \r
244 void vCommsRxTask( void * pvParameters )\r
245 {\r
246 static portCHAR cRxedChar, cExpectedChar;\r
247 \r
248         /* Set the char we expect to receive to the start of the string. */\r
249         cExpectedChar = commsFIRST_TX_CHAR;\r
250 \r
251         for( ;; )\r
252         {\r
253                 /* Wait for a character to be received. */\r
254                 xQueueReceive( xCommsQueue, ( void * ) &cRxedChar, commsRX_DELAY );\r
255 \r
256                 /* Was the character recived (if any) the expected character. */\r
257                 if( cRxedChar != cExpectedChar )\r
258                 {\r
259                         /* Got an unexpected character.  This can sometimes occur when\r
260                         reseting the system using the debugger leaving characters already\r
261                         in the UART regsters. */\r
262                         uxCommsErrorStatus = pdFAIL;\r
263 \r
264                         /* Resync by waiting for the end of the current string. */\r
265                         while( cRxedChar != commsLAST_TX_CHAR )\r
266                         {\r
267                                 while( !xQueueReceive( xCommsQueue, ( void * ) &cRxedChar, portMAX_DELAY ) );\r
268                         }\r
269 \r
270                         /* The next expected character is the start of the string again. */\r
271                         cExpectedChar = commsFIRST_TX_CHAR;\r
272                 }\r
273                 else\r
274                 {\r
275                         if( cExpectedChar == commsLAST_TX_CHAR )\r
276                         {\r
277                                 /* We have reached the end of the string - we now expect to \r
278                                 receive the first character in the string again.   The LED is \r
279                                 toggled to indicate that the entire string was received without\r
280                                 error. */\r
281                                 vParTestToggleLED( commsRX_LED );\r
282                                 cExpectedChar = commsFIRST_TX_CHAR;\r
283                         }\r
284                         else\r
285                         {\r
286                                 /* We got the expected character, we now expect to receive the\r
287                                 next character in the string. */\r
288                                 cExpectedChar++;\r
289                         }\r
290                 }\r
291         }\r
292 }\r
293 /*-----------------------------------------------------------*/\r
294 \r
295 unsigned portBASE_TYPE uxGetCommsStatus( void )\r
296 {\r
297         return uxCommsErrorStatus;\r
298 }\r