]> git.sur5r.net Git - freertos/blob - Demo/msp430_GCC/serial/serial.c
Update version numbers to V4.8.0
[freertos] / Demo / msp430_GCC / serial / serial.c
1 /*\r
2         FreeRTOS.org V4.8.0 - Copyright (C) 2003-2008 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         ***************************************************************************\r
28         *                                                                                                                                                 *\r
29         * SAVE TIME AND MONEY!  Why not get us to quote to get FreeRTOS.org               *\r
30         * running on your hardware - or even write all or part of your application*\r
31         * for you?  See http://www.OpenRTOS.com for details.                                      *\r
32         *                                                                                                                                                 *\r
33         ***************************************************************************\r
34         ***************************************************************************\r
35 \r
36         Please ensure to read the configuration and relevant port sections of the\r
37         online documentation.\r
38 \r
39         http://www.FreeRTOS.org - Documentation, latest information, license and \r
40         contact details.\r
41 \r
42         http://www.SafeRTOS.com - A version that is certified for use in safety \r
43         critical systems.\r
44 \r
45         http://www.OpenRTOS.com - Commercial support, development, porting, \r
46         licensing and training services.\r
47 */\r
48 \r
49 \r
50 /* BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER.   \r
51  * \r
52  * This file only supports UART 1\r
53  */\r
54 \r
55 /* Standard includes. */\r
56 #include <stdlib.h>\r
57 #include <signal.h>\r
58 \r
59 /* Scheduler includes. */\r
60 #include "FreeRTOS.h"\r
61 #include "queue.h"\r
62 #include "task.h"\r
63 \r
64 /* Demo application includes. */\r
65 #include "serial.h"\r
66 \r
67 /* Constants required to setup the hardware. */\r
68 #define serTX_AND_RX                    ( ( unsigned portCHAR ) 0x03 )\r
69 \r
70 /* Misc. constants. */\r
71 #define serNO_BLOCK                             ( ( portTickType ) 0 )\r
72 \r
73 /* Enable the UART Tx interrupt. */\r
74 #define vInterruptOn() IFG2 |= UTXIFG1\r
75 \r
76 /* The queue used to hold received characters. */\r
77 static xQueueHandle xRxedChars; \r
78 \r
79 /* The queue used to hold characters waiting transmission. */\r
80 static xQueueHandle xCharsForTx; \r
81 \r
82 static volatile portSHORT sTHREEmpty;\r
83 \r
84 /* Interrupt service routines. */\r
85 interrupt (UART1RX_VECTOR) vRxISR( void );\r
86 interrupt (UART1TX_VECTOR) vTxISR( void );\r
87 \r
88 /*-----------------------------------------------------------*/\r
89 \r
90 xComPortHandle xSerialPortInitMinimal( unsigned portLONG ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
91 {\r
92 unsigned portLONG ulBaudRateCount;\r
93 \r
94         /* Initialise the hardware. */\r
95 \r
96         /* Generate the baud rate constants for the wanted baud rate. */\r
97         ulBaudRateCount = configCPU_CLOCK_HZ / ulWantedBaud;\r
98 \r
99         portENTER_CRITICAL();\r
100         {\r
101                 /* Create the queues used by the com test task. */\r
102                 xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );\r
103                 xCharsForTx = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed portCHAR ) );\r
104 \r
105                 /* Reset UART. */\r
106                 UCTL1 |= SWRST;\r
107 \r
108                 /* Set pin function. */\r
109                 P4SEL |= serTX_AND_RX;\r
110 \r
111                 /* All other bits remain at zero for n, 8, 1 interrupt driven operation. \r
112                 LOOPBACK MODE!*/\r
113                 U1CTL |= CHAR + LISTEN;\r
114                 U1TCTL |= SSEL1;\r
115 \r
116                 /* Setup baud rate low byte. */\r
117                 U1BR0 = ( unsigned portCHAR ) ( ulBaudRateCount & ( unsigned portLONG ) 0xff );\r
118 \r
119                 /* Setup baud rate high byte. */\r
120                 ulBaudRateCount >>= 8UL;\r
121                 U1BR1 = ( unsigned portCHAR ) ( ulBaudRateCount & ( unsigned portLONG ) 0xff );\r
122 \r
123                 /* Enable ports. */\r
124                 ME2 |= UTXE1 + URXE1;\r
125 \r
126                 /* Set. */\r
127                 UCTL1 &= ~SWRST;\r
128 \r
129                 /* Nothing in the buffer yet. */\r
130                 sTHREEmpty = pdTRUE;\r
131 \r
132                 /* Enable interrupts. */\r
133                 IE2 |= URXIE1 + UTXIE1;\r
134         }\r
135         portEXIT_CRITICAL();\r
136         \r
137         /* Unlike other ports, this serial code does not allow for more than one\r
138         com port.  We therefore don't return a pointer to a port structure and can\r
139         instead just return NULL. */\r
140         return NULL;\r
141 }\r
142 /*-----------------------------------------------------------*/\r
143 \r
144 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed portCHAR *pcRxedChar, portTickType xBlockTime )\r
145 {\r
146         /* Get the next character from the buffer.  Return false if no characters\r
147         are available, or arrive before xBlockTime expires. */\r
148         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
149         {\r
150                 return pdTRUE;\r
151         }\r
152         else\r
153         {\r
154                 return pdFALSE;\r
155         }\r
156 }\r
157 /*-----------------------------------------------------------*/\r
158 \r
159 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed portCHAR cOutChar, portTickType xBlockTime )\r
160 {\r
161 signed portBASE_TYPE xReturn;\r
162 \r
163         /* Transmit a character. */\r
164 \r
165         portENTER_CRITICAL();\r
166         {\r
167                 if( sTHREEmpty == pdTRUE )\r
168                 {\r
169                         /* If sTHREEmpty is true then the UART Tx ISR has indicated that \r
170                         there are no characters queued to be transmitted - so we can\r
171                         write the character directly to the shift Tx register. */\r
172                         sTHREEmpty = pdFALSE;\r
173                         U1TXBUF = cOutChar;\r
174                         xReturn = pdPASS;\r
175                 }\r
176                 else\r
177                 {\r
178                         /* sTHREEmpty is false, so there are still characters waiting to be\r
179                         transmitted.  We have to queue this character so it gets \r
180                         transmitted     in turn. */\r
181 \r
182                         /* Return false if after the block time there is no room on the Tx \r
183                         queue.  It is ok to block inside a critical section as each task\r
184                         maintains it's own critical section status. */\r
185                         xReturn = xQueueSend( xCharsForTx, &cOutChar, xBlockTime );\r
186 \r
187                         /* Depending on queue sizing and task prioritisation:  While we \r
188                         were blocked waiting to post on the queue interrupts were not \r
189                         disabled.  It is possible that the serial ISR has emptied the \r
190                         Tx queue, in which case we need to start the Tx off again\r
191                         writing directly to the Tx register. */\r
192                         if( ( sTHREEmpty == pdTRUE ) && ( xReturn == pdPASS ) )\r
193                         {\r
194                                 /* Get back the character we just posted. */\r
195                                 xQueueReceive( xCharsForTx, &cOutChar, serNO_BLOCK );\r
196                                 sTHREEmpty = pdFALSE;\r
197                                 U1TXBUF = cOutChar;\r
198                         }\r
199                 }\r
200         }\r
201         portEXIT_CRITICAL();\r
202 \r
203         return pdPASS;\r
204 }\r
205 /*-----------------------------------------------------------*/\r
206 \r
207 /*\r
208  * UART RX interrupt service routine.\r
209  */\r
210 interrupt (UART1RX_VECTOR) vRxISR( void )\r
211 {\r
212 signed portCHAR cChar;\r
213 \r
214         /* Get the character from the UART and post it on the queue of Rxed \r
215         characters. */\r
216         cChar = U1RXBUF;\r
217 \r
218         if( xQueueSendFromISR( xRxedChars, &cChar, pdFALSE ) )\r
219         {\r
220                 /*If the post causes a task to wake force a context switch \r
221                 as the woken task may have a higher priority than the task we have \r
222                 interrupted. */\r
223                 taskYIELD();\r
224         }\r
225 }\r
226 /*-----------------------------------------------------------*/\r
227 \r
228 /*\r
229  * UART Tx interrupt service routine.\r
230  */\r
231 interrupt (UART1TX_VECTOR) vTxISR( void )\r
232 {\r
233 signed portCHAR cChar;\r
234 portBASE_TYPE xTaskWoken;\r
235 \r
236         /* The previous character has been transmitted.  See if there are any\r
237         further characters waiting transmission. */\r
238 \r
239         if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xTaskWoken ) == pdTRUE )\r
240         {\r
241                 /* There was another character queued - transmit it now. */\r
242                 U1TXBUF = cChar;\r
243         }\r
244         else\r
245         {\r
246                 /* There were no other characters to transmit. */\r
247                 sTHREEmpty = pdTRUE;\r
248         }\r
249 }\r
250 \r