]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/dsPIC_MPLAB/serial/serial.c
Update version number to 9.0.0rc2.
[freertos] / FreeRTOS / Demo / dsPIC_MPLAB / serial / serial.c
1 /*\r
2     FreeRTOS V9.0.0rc2 - Copyright (C) 2016 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 /* BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER. \r
72 \r
73 NOTE:  This driver is primarily to test the scheduler functionality.  It does\r
74 not effectively use the buffers or DMA and is therefore not intended to be\r
75 an example of an efficient driver. */\r
76 \r
77 /* Standard include file. */\r
78 #include <stdlib.h>\r
79 \r
80 /* Scheduler include files. */\r
81 #include "FreeRTOS.h"\r
82 #include "queue.h"\r
83 #include "task.h"\r
84 \r
85 /* Demo app include files. */\r
86 #include "serial.h"\r
87 \r
88 /* Hardware setup. */\r
89 #define serOUTPUT                                               0\r
90 #define serINPUT                                                1\r
91 #define serLOW_SPEED                                    0\r
92 #define serONE_STOP_BIT                                 0\r
93 #define serEIGHT_DATA_BITS_NO_PARITY    0\r
94 #define serNORMAL_IDLE_STATE                    0\r
95 #define serAUTO_BAUD_OFF                                0\r
96 #define serLOOPBACK_OFF                                 0\r
97 #define serWAKE_UP_DISABLE                              0\r
98 #define serNO_HARDWARE_FLOW_CONTROL             0\r
99 #define serSTANDARD_IO                                  0\r
100 #define serNO_IRDA                                              0\r
101 #define serCONTINUE_IN_IDLE_MODE                0\r
102 #define serUART_ENABLED                                 1\r
103 #define serINTERRUPT_ON_SINGLE_CHAR             0\r
104 #define serTX_ENABLE                                    1\r
105 #define serINTERRUPT_ENABLE                             1\r
106 #define serINTERRUPT_DISABLE                    0\r
107 #define serCLEAR_FLAG                                   0\r
108 #define serSET_FLAG                                             1\r
109 \r
110 \r
111 /* The queues used to communicate between tasks and ISR's. */\r
112 static QueueHandle_t xRxedChars; \r
113 static QueueHandle_t xCharsForTx; \r
114 \r
115 static portBASE_TYPE xTxHasEnded;\r
116 /*-----------------------------------------------------------*/\r
117 \r
118 xComPortHandle xSerialPortInitMinimal( unsigned long ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )\r
119 {\r
120 char cChar;\r
121 \r
122         /* Create the queues used by the com test task. */\r
123         xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
124         xCharsForTx = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );\r
125 \r
126         /* Setup the UART. */\r
127         U2MODEbits.BRGH         = serLOW_SPEED;\r
128         U2MODEbits.STSEL        = serONE_STOP_BIT;\r
129         U2MODEbits.PDSEL        = serEIGHT_DATA_BITS_NO_PARITY;\r
130         U2MODEbits.ABAUD        = serAUTO_BAUD_OFF;\r
131         U2MODEbits.LPBACK       = serLOOPBACK_OFF;\r
132         U2MODEbits.WAKE         = serWAKE_UP_DISABLE;\r
133         U2MODEbits.UEN          = serNO_HARDWARE_FLOW_CONTROL;\r
134         U2MODEbits.IREN         = serNO_IRDA;\r
135         U2MODEbits.USIDL        = serCONTINUE_IN_IDLE_MODE;\r
136         U2MODEbits.UARTEN       = serUART_ENABLED;\r
137 \r
138         U2BRG = (unsigned short)(( (float)configCPU_CLOCK_HZ / ( (float)16 * (float)ulWantedBaud ) ) - (float)0.5);\r
139 \r
140         U2STAbits.URXISEL       = serINTERRUPT_ON_SINGLE_CHAR;\r
141         U2STAbits.UTXEN         = serTX_ENABLE;\r
142         U2STAbits.UTXINV        = serNORMAL_IDLE_STATE;\r
143         U2STAbits.UTXISEL0      = serINTERRUPT_ON_SINGLE_CHAR;\r
144         U2STAbits.UTXISEL1      = serINTERRUPT_ON_SINGLE_CHAR;\r
145 \r
146         /* It is assumed that this function is called prior to the scheduler being\r
147         started.  Therefore interrupts must not be allowed to occur yet as they\r
148         may attempt to perform a context switch. */\r
149         portDISABLE_INTERRUPTS();\r
150 \r
151         IFS1bits.U2RXIF = serCLEAR_FLAG;\r
152         IFS1bits.U2TXIF = serCLEAR_FLAG;\r
153         IPC7bits.U2RXIP = configKERNEL_INTERRUPT_PRIORITY;\r
154         IPC7bits.U2TXIP = configKERNEL_INTERRUPT_PRIORITY;\r
155         IEC1bits.U2TXIE = serINTERRUPT_ENABLE;\r
156         IEC1bits.U2RXIE = serINTERRUPT_ENABLE;\r
157 \r
158         /* Clear the Rx buffer. */\r
159         while( U2STAbits.URXDA == serSET_FLAG )\r
160         {\r
161                 cChar = U2RXREG;\r
162         }\r
163 \r
164         xTxHasEnded = pdTRUE;\r
165 \r
166         return NULL;\r
167 }\r
168 /*-----------------------------------------------------------*/\r
169 \r
170 signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed char *pcRxedChar, TickType_t xBlockTime )\r
171 {\r
172         /* Only one port is supported. */\r
173         ( void ) pxPort;\r
174 \r
175         /* Get the next character from the buffer.  Return false if no characters\r
176         are available or arrive before xBlockTime expires. */\r
177         if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )\r
178         {\r
179                 return pdTRUE;\r
180         }\r
181         else\r
182         {\r
183                 return pdFALSE;\r
184         }\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed char cOutChar, TickType_t xBlockTime )\r
189 {\r
190         /* Only one port is supported. */\r
191         ( void ) pxPort;\r
192 \r
193         /* Return false if after the block time there is no room on the Tx queue. */\r
194         if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )\r
195         {\r
196                 return pdFAIL;\r
197         }\r
198 \r
199         /* A critical section should not be required as xTxHasEnded will not be\r
200         written to by the ISR if it is already 0 (is this correct?). */\r
201         if( xTxHasEnded )\r
202         {\r
203                 xTxHasEnded = pdFALSE;\r
204                 IFS1bits.U2TXIF = serSET_FLAG;\r
205         }\r
206 \r
207         return pdPASS;\r
208 }\r
209 /*-----------------------------------------------------------*/\r
210 \r
211 void vSerialClose( xComPortHandle xPort )\r
212 {\r
213 }\r
214 /*-----------------------------------------------------------*/\r
215 \r
216 void __attribute__((__interrupt__, auto_psv)) _U2RXInterrupt( void )\r
217 {\r
218 char cChar;\r
219 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
220 \r
221         /* Get the character and post it on the queue of Rxed characters.\r
222         If the post causes a task to wake force a context switch as the woken task\r
223         may have a higher priority than the task we have interrupted. */\r
224         IFS1bits.U2RXIF = serCLEAR_FLAG;\r
225         while( U2STAbits.URXDA )\r
226         {\r
227                 cChar = U2RXREG;\r
228                 xQueueSendFromISR( xRxedChars, &cChar, &xHigherPriorityTaskWoken );\r
229         }\r
230 \r
231         if( xHigherPriorityTaskWoken != pdFALSE )\r
232         {\r
233                 taskYIELD();\r
234         }\r
235 }\r
236 /*-----------------------------------------------------------*/\r
237 \r
238 void __attribute__((__interrupt__, auto_psv)) _U2TXInterrupt( void )\r
239 {\r
240 signed char cChar;\r
241 portBASE_TYPE xTaskWoken = pdFALSE;\r
242 \r
243         /* If the transmit buffer is full we cannot get the next character.\r
244         Another interrupt will occur the next time there is space so this does\r
245         not matter. */\r
246         IFS1bits.U2TXIF = serCLEAR_FLAG;\r
247         while( !( U2STAbits.UTXBF ) )\r
248         {\r
249                 if( xQueueReceiveFromISR( xCharsForTx, &cChar, &xTaskWoken ) == pdTRUE )\r
250                 {\r
251                         /* Send the next character queued for Tx. */\r
252                         U2TXREG = cChar;\r
253                 }\r
254                 else\r
255                 {\r
256                         /* Queue empty, nothing to send. */\r
257                         xTxHasEnded = pdTRUE;\r
258                         break;\r
259                 }\r
260         }\r
261 \r
262         if( xTaskWoken != pdFALSE )\r
263         {\r
264                 taskYIELD();\r
265         }\r
266 }\r
267 \r
268 \r