1 |
588 |
jeremybenn |
/*
|
2 |
|
|
FreeRTOS V6.1.1 - Copyright (C) 2011 Real Time Engineers Ltd.
|
3 |
|
|
|
4 |
|
|
***************************************************************************
|
5 |
|
|
* *
|
6 |
|
|
* If you are: *
|
7 |
|
|
* *
|
8 |
|
|
* + New to FreeRTOS, *
|
9 |
|
|
* + Wanting to learn FreeRTOS or multitasking in general quickly *
|
10 |
|
|
* + Looking for basic training, *
|
11 |
|
|
* + Wanting to improve your FreeRTOS skills and productivity *
|
12 |
|
|
* *
|
13 |
|
|
* then take a look at the FreeRTOS books - available as PDF or paperback *
|
14 |
|
|
* *
|
15 |
|
|
* "Using the FreeRTOS Real Time Kernel - a Practical Guide" *
|
16 |
|
|
* http://www.FreeRTOS.org/Documentation *
|
17 |
|
|
* *
|
18 |
|
|
* A pdf reference manual is also available. Both are usually delivered *
|
19 |
|
|
* to your inbox within 20 minutes to two hours when purchased between 8am *
|
20 |
|
|
* and 8pm GMT (although please allow up to 24 hours in case of *
|
21 |
|
|
* exceptional circumstances). Thank you for your support! *
|
22 |
|
|
* *
|
23 |
|
|
***************************************************************************
|
24 |
|
|
|
25 |
|
|
This file is part of the FreeRTOS distribution.
|
26 |
|
|
|
27 |
|
|
FreeRTOS is free software; you can redistribute it and/or modify it under
|
28 |
|
|
the terms of the GNU General Public License (version 2) as published by the
|
29 |
|
|
Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
|
30 |
|
|
***NOTE*** The exception to the GPL is included to allow you to distribute
|
31 |
|
|
a combined work that includes FreeRTOS without being obliged to provide the
|
32 |
|
|
source code for proprietary components outside of the FreeRTOS kernel.
|
33 |
|
|
FreeRTOS is distributed in the hope that it will be useful, but WITHOUT
|
34 |
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
35 |
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
36 |
|
|
more details. You should have received a copy of the GNU General Public
|
37 |
|
|
License and the FreeRTOS license exception along with FreeRTOS; if not it
|
38 |
|
|
can be viewed here: http://www.freertos.org/a00114.html and also obtained
|
39 |
|
|
by writing to Richard Barry, contact details for whom are available on the
|
40 |
|
|
FreeRTOS WEB site.
|
41 |
|
|
|
42 |
|
|
1 tab == 4 spaces!
|
43 |
|
|
|
44 |
|
|
http://www.FreeRTOS.org - Documentation, latest information, license and
|
45 |
|
|
contact details.
|
46 |
|
|
|
47 |
|
|
http://www.SafeRTOS.com - A version that is certified for use in safety
|
48 |
|
|
critical systems.
|
49 |
|
|
|
50 |
|
|
http://www.OpenRTOS.com - Commercial support, development, porting,
|
51 |
|
|
licensing and training services.
|
52 |
|
|
*/
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
/* BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER for port 1.
|
56 |
|
|
|
57 |
|
|
Note that this driver is written to test the RTOS port and is not intended
|
58 |
|
|
to represent an optimised solution. */
|
59 |
|
|
|
60 |
|
|
/* Processor Expert generated includes. */
|
61 |
|
|
#include "com0.h"
|
62 |
|
|
|
63 |
|
|
/* Scheduler include files. */
|
64 |
|
|
#include "FreeRTOS.h"
|
65 |
|
|
#include "queue.h"
|
66 |
|
|
#include "task.h"
|
67 |
|
|
|
68 |
|
|
/* Demo application include files. */
|
69 |
|
|
#include "serial.h"
|
70 |
|
|
|
71 |
|
|
/* The queues used to communicate between the task code and the interrupt
|
72 |
|
|
service routines. */
|
73 |
|
|
static xQueueHandle xRxedChars;
|
74 |
|
|
static xQueueHandle xCharsForTx;
|
75 |
|
|
|
76 |
|
|
/* Interrupt identification bits. */
|
77 |
|
|
#define serOVERRUN_INTERRUPT ( 0x08 )
|
78 |
|
|
#define serRX_INTERRUPT ( 0x20 )
|
79 |
|
|
#define serTX_INTERRUPT ( 0x80 )
|
80 |
|
|
|
81 |
|
|
/*-----------------------------------------------------------*/
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
/*
|
85 |
|
|
* Initialise port for interrupt driven communications.
|
86 |
|
|
*/
|
87 |
|
|
xComPortHandle xSerialPortInitMinimal( unsigned long ulWantedBaud, unsigned portBASE_TYPE uxQueueLength )
|
88 |
|
|
{
|
89 |
|
|
/* Hardware setup is performed by the Processor Expert generated code.
|
90 |
|
|
This function just creates the queues used to communicate between the
|
91 |
|
|
interrupt code and the task code - then sets the required baud rate. */
|
92 |
|
|
|
93 |
|
|
xRxedChars = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );
|
94 |
|
|
xCharsForTx = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( signed char ) );
|
95 |
|
|
|
96 |
|
|
COM0_SetBaudRateMode( ( char ) ulWantedBaud );
|
97 |
|
|
|
98 |
|
|
return NULL;
|
99 |
|
|
}
|
100 |
|
|
/*-----------------------------------------------------------*/
|
101 |
|
|
|
102 |
|
|
signed portBASE_TYPE xSerialGetChar( xComPortHandle pxPort, signed char *pcRxedChar, portTickType xBlockTime )
|
103 |
|
|
{
|
104 |
|
|
/* Get the next character from the buffer queue. Return false if no characters
|
105 |
|
|
are available, or arrive before xBlockTime expires. */
|
106 |
|
|
if( xQueueReceive( xRxedChars, pcRxedChar, xBlockTime ) )
|
107 |
|
|
{
|
108 |
|
|
return pdTRUE;
|
109 |
|
|
}
|
110 |
|
|
else
|
111 |
|
|
{
|
112 |
|
|
return pdFALSE;
|
113 |
|
|
}
|
114 |
|
|
}
|
115 |
|
|
/*-----------------------------------------------------------*/
|
116 |
|
|
|
117 |
|
|
signed portBASE_TYPE xSerialPutChar( xComPortHandle pxPort, signed char cOutChar, portTickType xBlockTime )
|
118 |
|
|
{
|
119 |
|
|
/* Place the character in the queue of characters to be transmitted. */
|
120 |
|
|
if( xQueueSend( xCharsForTx, &cOutChar, xBlockTime ) != pdPASS )
|
121 |
|
|
{
|
122 |
|
|
return pdFAIL;
|
123 |
|
|
}
|
124 |
|
|
|
125 |
|
|
/* Turn on the Tx interrupt so the ISR will remove the character from the
|
126 |
|
|
queue and send it. This does not need to be in a critical section as
|
127 |
|
|
if the interrupt has already removed the character the next interrupt
|
128 |
|
|
will simply turn off the Tx interrupt again. */
|
129 |
|
|
SCI0CR2_SCTIE = 1;;
|
130 |
|
|
|
131 |
|
|
return pdPASS;
|
132 |
|
|
}
|
133 |
|
|
/*-----------------------------------------------------------*/
|
134 |
|
|
|
135 |
|
|
void vSerialClose( xComPortHandle xPort )
|
136 |
|
|
{
|
137 |
|
|
/* Not supported. */
|
138 |
|
|
( void ) xPort;
|
139 |
|
|
}
|
140 |
|
|
/*-----------------------------------------------------------*/
|
141 |
|
|
|
142 |
|
|
|
143 |
|
|
/*
|
144 |
|
|
* Interrupt service routine for the serial port. Must be in non-banked
|
145 |
|
|
* memory.
|
146 |
|
|
*/
|
147 |
|
|
|
148 |
|
|
#pragma CODE_SEG __NEAR_SEG NON_BANKED
|
149 |
|
|
|
150 |
|
|
__interrupt void vCOM0_ISR( void )
|
151 |
|
|
{
|
152 |
|
|
volatile unsigned char ucByte, ucStatus;
|
153 |
|
|
portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
154 |
|
|
|
155 |
|
|
/* What caused the interrupt? */
|
156 |
|
|
ucStatus = SCI0SR1;
|
157 |
|
|
|
158 |
|
|
if( ucStatus & serOVERRUN_INTERRUPT )
|
159 |
|
|
{
|
160 |
|
|
/* The interrupt was caused by an overrun. Clear the error by reading
|
161 |
|
|
the data register. */
|
162 |
|
|
ucByte = SCI0DRL;
|
163 |
|
|
}
|
164 |
|
|
|
165 |
|
|
if( ucStatus & serRX_INTERRUPT )
|
166 |
|
|
{
|
167 |
|
|
/* The interrupt was caused by a character being received.
|
168 |
|
|
Read the received byte. */
|
169 |
|
|
ucByte = SCI0DRL;
|
170 |
|
|
|
171 |
|
|
/* Post the character onto the queue of received characters - noting
|
172 |
|
|
whether or not this wakes a task. */
|
173 |
|
|
xQueueSendFromISR( xRxedChars, ( void * ) &ucByte, &xHigherPriorityTaskWoken );
|
174 |
|
|
}
|
175 |
|
|
|
176 |
|
|
if( ( ucStatus & serTX_INTERRUPT ) && ( SCI0CR2_SCTIE ) )
|
177 |
|
|
{
|
178 |
|
|
/* The interrupt was caused by a character being transmitted. */
|
179 |
|
|
if( xQueueReceiveFromISR( xCharsForTx, ( void * ) &ucByte, &xHigherPriorityTaskWoken ) == pdTRUE )
|
180 |
|
|
{
|
181 |
|
|
/* Clear the SCRF bit. */
|
182 |
|
|
SCI0DRL = ucByte;
|
183 |
|
|
}
|
184 |
|
|
else
|
185 |
|
|
{
|
186 |
|
|
/* Disable transmit interrupt */
|
187 |
|
|
SCI0CR2_SCTIE = 0;
|
188 |
|
|
}
|
189 |
|
|
}
|
190 |
|
|
|
191 |
|
|
if( xHigherPriorityTaskWoken )
|
192 |
|
|
{
|
193 |
|
|
portYIELD();
|
194 |
|
|
}
|
195 |
|
|
}
|
196 |
|
|
|
197 |
|
|
#pragma CODE_SEG DEFAULT
|
198 |
|
|
|