Line No. | Rev | Author | Line |
---|---|---|---|
1 | 6 | kaklik | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> |
||
3 | <title>Procyon AVRlib: uart2.h Source File</title> |
||
4 | <link href="dox.css" rel="stylesheet" type="text/css"> |
||
5 | </head><body> |
||
6 | <!-- Generated by Doxygen 1.4.2 --> |
||
7 | <div class="qindex"><a class="qindex" href="main.html">Main Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data Structures</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Data Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related Pages</a></div> |
||
8 | <h1>uart2.h</h1><a href="uart2_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 <span class="comment">/*! \file uart2.h \brief Dual UART driver with buffer support. */</span> |
||
9 | 00002 <span class="comment">//*****************************************************************************</span> |
||
10 | 00003 <span class="comment">//</span> |
||
11 | 00004 <span class="comment">// File Name : 'uart2.h'</span> |
||
12 | 00005 <span class="comment">// Title : Dual UART driver with buffer support</span> |
||
13 | 00006 <span class="comment">// Author : Pascal Stang - Copyright (C) 2000-2002</span> |
||
14 | 00007 <span class="comment">// Created : 11/20/2000</span> |
||
15 | 00008 <span class="comment">// Revised : 07/04/2004</span> |
||
16 | 00009 <span class="comment">// Version : 1.0</span> |
||
17 | 00010 <span class="comment">// Target MCU : ATMEL AVR Series</span> |
||
18 | 00011 <span class="comment">// Editor Tabs : 4</span> |
||
19 | 00012 <span class="comment">//</span> |
||
20 | 00013 <span class="comment">// This code is distributed under the GNU Public License</span> |
||
21 | 00014 <span class="comment">// which can be found at http://www.gnu.org/licenses/gpl.txt</span> |
||
22 | 00015 <span class="comment">//</span><span class="comment"></span> |
||
23 | 00016 <span class="comment">/// \ingroup driver_avr</span> |
||
24 | 00017 <span class="comment">/// \defgroup uart2 UART Driver/Function Library for dual-UART processors (uart2.c)</span> |
||
25 | 00018 <span class="comment">/// \code #include "uart2.h" \endcode</span> |
||
26 | 00019 <span class="comment">/// \par Overview</span> |
||
27 | 00020 <span class="comment">/// This is a UART driver for AVR-series processors with two hardware</span> |
||
28 | 00021 <span class="comment">/// UARTs such as the mega161 and mega128. This library provides both</span> |
||
29 | 00022 <span class="comment">/// buffered and unbuffered transmit and receive functions for the AVR</span> |
||
30 | 00023 <span class="comment">/// processor UART. Buffered access means that the UART can transmit</span> |
||
31 | 00024 <span class="comment">/// and receive data in the "background", while your code continues</span> |
||
32 | 00025 <span class="comment">/// executing. Also included are functions to initialize the UARTs,</span> |
||
33 | 00026 <span class="comment">/// set the baud rate, flush the buffers, and check buffer status.</span> |
||
34 | 00027 <span class="comment">///</span> |
||
35 | 00028 <span class="comment">/// \note For full text output functionality, you may wish to use the rprintf</span> |
||
36 | 00029 <span class="comment">/// functions along with this driver.</span> |
||
37 | 00030 <span class="comment">///</span> |
||
38 | 00031 <span class="comment">/// \par About UART operations</span> |
||
39 | 00032 <span class="comment">/// Most Atmel AVR-series processors contain one or more hardware UARTs</span> |
||
40 | 00033 <span class="comment">/// (aka, serial ports). UART serial ports can communicate with other </span> |
||
41 | 00034 <span class="comment">/// serial ports of the same type, like those used on PCs. In general,</span> |
||
42 | 00035 <span class="comment">/// UARTs are used to communicate with devices that are RS-232 compatible</span> |
||
43 | 00036 <span class="comment">/// (RS-232 is a certain kind of serial port).</span> |
||
44 | 00037 <span class="comment">/// \par</span> |
||
45 | 00038 <span class="comment">/// By far, the most common use for serial communications on AVR processors</span> |
||
46 | 00039 <span class="comment">/// is for sending information and data to a PC running a terminal program.</span> |
||
47 | 00040 <span class="comment">/// Here is an exmaple:</span> |
||
48 | 00041 <span class="comment">/// \code</span> |
||
49 | 00042 <span class="comment">/// uartInit(); // initialize UARTs (serial ports)</span> |
||
50 | 00043 <span class="comment">/// uartSetBaudRate(0, 9600); // set UART0 speed to 9600 baud</span> |
||
51 | 00044 <span class="comment">/// uartSetBaudRate(1, 115200); // set UART1 speed to 115200 baud</span> |
||
52 | 00045 <span class="comment">///</span> |
||
53 | 00046 <span class="comment">/// rprintfInit(uart0SendByte); // configure rprintf to use UART0 for output</span> |
||
54 | 00047 <span class="comment">/// rprintf("Hello UART0\r\n"); // send "hello world" message via UART0</span> |
||
55 | 00048 <span class="comment">///</span> |
||
56 | 00049 <span class="comment">/// rprintfInit(uart1SendByte); // configure rprintf to use UART1 for output</span> |
||
57 | 00050 <span class="comment">/// rprintf("Hello UART1\r\n"); // send "hello world" message via UART1</span> |
||
58 | 00051 <span class="comment">/// \endcode</span> |
||
59 | 00052 <span class="comment">///</span> |
||
60 | 00053 <span class="comment">/// \warning The CPU frequency (F_CPU) must be set correctly in \c global.h</span> |
||
61 | 00054 <span class="comment">/// for the UART library to calculate correct baud rates. Furthermore,</span> |
||
62 | 00055 <span class="comment">/// certain CPU frequencies will not produce exact baud rates due to</span> |
||
63 | 00056 <span class="comment">/// integer frequency division round-off. See your AVR processor's</span> |
||
64 | 00057 <span class="comment">/// datasheet for full details.</span> |
||
65 | 00058 <span class="comment"></span><span class="comment">//</span> |
||
66 | 00059 <span class="comment">//*****************************************************************************</span><span class="comment"></span> |
||
67 | 00060 <span class="comment">//@{</span> |
||
68 | 00061 <span class="comment"></span> |
||
69 | 00062 <span class="preprocessor">#ifndef UART2_H</span> |
||
70 | 00063 <span class="preprocessor"></span><span class="preprocessor">#define UART2_H</span> |
||
71 | 00064 <span class="preprocessor"></span> |
||
72 | 00065 <span class="preprocessor">#include "<a class="code" href="global_8h.html">global.h</a>"</span> |
||
73 | 00066 <span class="preprocessor">#include "<a class="code" href="buffer_8h.html">buffer.h</a>"</span> |
||
74 | 00067 <span class="comment"></span> |
||
75 | 00068 <span class="comment">//! Default uart baud rate.</span> |
||
76 | 00069 <span class="comment">/// This is the default speed after a uartInit() command,</span> |
||
77 | 00070 <span class="comment">/// and can be changed by using uartSetBaudRate().</span> |
||
78 | <a name="l00071"></a><a class="code" href="group__uart2.html#ga24">00071</a> <span class="comment"></span><span class="preprocessor">#define UART0_DEFAULT_BAUD_RATE 9600 </span><span class="comment">///< default baud rate for UART0</span> |
||
79 | <a name="l00072"></a><a class="code" href="group__uart2.html#ga25">00072</a> <span class="comment"></span>#define UART1_DEFAULT_BAUD_RATE 9600 <span class="comment">///< default baud rate for UART1</span> |
||
80 | 00073 <span class="comment"></span> |
||
81 | 00074 <span class="comment">// buffer memory allocation defines</span> |
||
82 | 00075 <span class="comment">// buffer sizes</span> |
||
83 | 00076 <span class="preprocessor">#ifndef UART0_TX_BUFFER_SIZE</span> |
||
84 | <a name="l00077"></a><a class="code" href="group__uart2.html#ga26">00077</a> <span class="preprocessor"></span><span class="preprocessor">#define UART0_TX_BUFFER_SIZE 0x0010 </span><span class="comment">///< number of bytes for uart0 transmit buffer</span> |
||
85 | 00078 <span class="comment"></span>#endif |
||
86 | 00079 <span class="preprocessor">#ifndef UART0_RX_BUFFER_SIZE</span> |
||
87 | <a name="l00080"></a><a class="code" href="group__uart2.html#ga27">00080</a> <span class="preprocessor"></span><span class="preprocessor">#define UART0_RX_BUFFER_SIZE 0x0080 </span><span class="comment">///< number of bytes for uart0 receive buffer</span> |
||
88 | 00081 <span class="comment"></span>#endif |
||
89 | 00082 <span class="preprocessor">#ifndef UART1_TX_BUFFER_SIZE</span> |
||
90 | <a name="l00083"></a><a class="code" href="group__uart2.html#ga28">00083</a> <span class="preprocessor"></span><span class="preprocessor">#define UART1_TX_BUFFER_SIZE 0x0010 </span><span class="comment">///< number of bytes for uart1 transmit buffer</span> |
||
91 | 00084 <span class="comment"></span>#endif |
||
92 | 00085 <span class="preprocessor">#ifndef UART1_RX_BUFFER_SIZE</span> |
||
93 | <a name="l00086"></a><a class="code" href="group__uart2.html#ga29">00086</a> <span class="preprocessor"></span><span class="preprocessor">#define UART1_RX_BUFFER_SIZE 0x0080 </span><span class="comment">///< number of bytes for uart1 receive buffer</span> |
||
94 | 00087 <span class="comment"></span>#endif |
||
95 | 00088 |
||
96 | 00089 <span class="comment">// define this key if you wish to use</span> |
||
97 | 00090 <span class="comment">// external RAM for the UART buffers</span> |
||
98 | 00091 <span class="comment">//#define UART_BUFFER_EXTERNAL_RAM</span> |
||
99 | 00092 <span class="preprocessor">#ifdef UART_BUFFER_EXTERNAL_RAM</span> |
||
100 | 00093 <span class="preprocessor"></span> <span class="comment">// absolute address of uart0 buffers</span> |
||
101 | 00094 <span class="preprocessor"> #define UART0_TX_BUFFER_ADDR 0x1000</span> |
||
102 | 00095 <span class="preprocessor"></span><span class="preprocessor"> #define UART0_RX_BUFFER_ADDR 0x1100</span> |
||
103 | 00096 <span class="preprocessor"></span> <span class="comment">// absolute address of uart1 buffers</span> |
||
104 | 00097 <span class="preprocessor"> #define UART1_TX_BUFFER_ADDR 0x1200</span> |
||
105 | 00098 <span class="preprocessor"></span><span class="preprocessor"> #define UART1_RX_BUFFER_ADDR 0x1300</span> |
||
106 | 00099 <span class="preprocessor"></span><span class="preprocessor">#endif</span> |
||
107 | 00100 <span class="preprocessor"></span><span class="comment"></span> |
||
108 | 00101 <span class="comment">//! Type of interrupt handler to use for uart interrupts.</span> |
||
109 | 00102 <span class="comment">/// Value may be SIGNAL or INTERRUPT.</span> |
||
110 | 00103 <span class="comment">/// \warning Do not change unless you know what you're doing.</span> |
||
111 | 00104 <span class="comment"></span><span class="preprocessor">#ifndef UART_INTERRUPT_HANDLER</span> |
||
112 | <a name="l00105"></a><a class="code" href="group__uart2.html#ga30">00105</a> <span class="preprocessor"></span><span class="preprocessor">#define UART_INTERRUPT_HANDLER SIGNAL</span> |
||
113 | 00106 <span class="preprocessor"></span><span class="preprocessor">#endif</span> |
||
114 | 00107 <span class="preprocessor"></span> |
||
115 | 00108 <span class="comment">// compatibility for the mega161</span> |
||
116 | 00109 <span class="preprocessor">#ifndef RXCIE</span> |
||
117 | 00110 <span class="preprocessor"></span><span class="preprocessor"> #define RXCIE RXCIE0</span> |
||
118 | 00111 <span class="preprocessor"></span><span class="preprocessor"> #define TXCIE TXCIE0</span> |
||
119 | 00112 <span class="preprocessor"></span><span class="preprocessor"> #define UDRIE UDRIE0</span> |
||
120 | 00113 <span class="preprocessor"></span><span class="preprocessor"> #define RXEN RXEN0</span> |
||
121 | 00114 <span class="preprocessor"></span><span class="preprocessor"> #define TXEN TXEN0</span> |
||
122 | 00115 <span class="preprocessor"></span><span class="preprocessor"> #define CHR9 CHR90</span> |
||
123 | 00116 <span class="preprocessor"></span><span class="preprocessor"> #define RXB8 RXB80</span> |
||
124 | 00117 <span class="preprocessor"></span><span class="preprocessor"> #define TXB8 TXB80</span> |
||
125 | 00118 <span class="preprocessor"></span><span class="preprocessor">#endif</span> |
||
126 | 00119 <span class="preprocessor"></span><span class="preprocessor">#ifndef UBRR0L</span> |
||
127 | 00120 <span class="preprocessor"></span><span class="preprocessor"> #define UBRR0L UBRR0</span> |
||
128 | 00121 <span class="preprocessor"></span><span class="preprocessor"> #define UBRR1L UBRR1</span> |
||
129 | 00122 <span class="preprocessor"></span><span class="preprocessor">#endif</span> |
||
130 | 00123 <span class="preprocessor"></span> |
||
131 | 00124 <span class="comment">// functions</span> |
||
132 | 00125 <span class="comment"></span> |
||
133 | 00126 <span class="comment">//! Initializes UARTs.</span> |
||
134 | 00127 <span class="comment">/// \note After running this init function, the processor</span> |
||
135 | 00128 <span class="comment">/// I/O pins that used for uart communications (RXD, TXD)</span> |
||
136 | 00129 <span class="comment">/// are no long available for general purpose I/O.</span> |
||
137 | 00130 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga0">uartInit</a>(<span class="keywordtype">void</span>); |
||
138 | 00131 <span class="comment"></span> |
||
139 | 00132 <span class="comment">//! Initializes UART0 only.</span> |
||
140 | 00133 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart2.html#ga1">uart0Init</a>(<span class="keywordtype">void</span>); |
||
141 | 00134 <span class="comment"></span> |
||
142 | 00135 <span class="comment">//! Initializes UART1 only.</span> |
||
143 | 00136 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart2.html#ga2">uart1Init</a>(<span class="keywordtype">void</span>); |
||
144 | 00137 <span class="comment"></span> |
||
145 | 00138 <span class="comment">//! Initializes transmit and receive buffers.</span> |
||
146 | 00139 <span class="comment">/// Automatically called from uartInit()</span> |
||
147 | 00140 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart2.html#ga3">uart0InitBuffers</a>(<span class="keywordtype">void</span>); |
||
148 | 00141 <span class="keywordtype">void</span> uart1InitBuffers(<span class="keywordtype">void</span>); |
||
149 | 00142 <span class="comment"></span> |
||
150 | 00143 <span class="comment">//! Redirects received data to a user function.</span> |
||
151 | 00144 <span class="comment">///</span> |
||
152 | 00145 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga2">uartSetRxHandler</a>(u08 nUart, <span class="keywordtype">void</span> (*rx_func)(<span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> c)); |
||
153 | 00146 <span class="comment"></span> |
||
154 | 00147 <span class="comment">//! Sets the uart baud rate.</span> |
||
155 | 00148 <span class="comment">/// Argument should be in bits-per-second, like \c uartSetBaudRate(9600);</span> |
||
156 | 00149 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga3">uartSetBaudRate</a>(u08 nUart, u32 baudrate); |
||
157 | 00150 <span class="comment"></span> |
||
158 | 00151 <span class="comment">//! Returns pointer to the receive buffer structure.</span> |
||
159 | 00152 <span class="comment">///</span> |
||
160 | 00153 <span class="comment"></span><a class="code" href="structstruct__cBuffer.html">cBuffer</a>* <a class="code" href="group__uart.html#ga4">uartGetRxBuffer</a>(u08 nUart); |
||
161 | 00154 <span class="comment"></span> |
||
162 | 00155 <span class="comment">//! Returns pointer to the transmit buffer structure.</span> |
||
163 | 00156 <span class="comment">///</span> |
||
164 | 00157 <span class="comment"></span><a class="code" href="structstruct__cBuffer.html">cBuffer</a>* <a class="code" href="group__uart.html#ga5">uartGetTxBuffer</a>(u08 nUart); |
||
165 | 00158 <span class="comment"></span> |
||
166 | 00159 <span class="comment">//! Sends a single byte over the uart.</span> |
||
167 | 00160 <span class="comment">///</span> |
||
168 | 00161 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga6">uartSendByte</a>(u08 nUart, u08 data); |
||
169 | 00162 <span class="comment"></span> |
||
170 | 00163 <span class="comment">//! SendByte commands with the UART number hardcoded</span> |
||
171 | 00164 <span class="comment">/// Use these with printfInit() - example: \c printfInit(uart0SendByte);</span> |
||
172 | 00165 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart2.html#ga10">uart0SendByte</a>(u08 data); |
||
173 | 00166 <span class="keywordtype">void</span> uart1SendByte(u08 data); |
||
174 | 00167 <span class="comment"></span> |
||
175 | 00168 <span class="comment">//! Gets a single byte from the uart receive buffer.</span> |
||
176 | 00169 <span class="comment">/// Returns the byte, or -1 if no byte is available (getchar-style).</span> |
||
177 | 00170 <span class="comment"></span><span class="keywordtype">int</span> <a class="code" href="group__uart2.html#ga12">uart0GetByte</a>(<span class="keywordtype">void</span>); |
||
178 | 00171 <span class="keywordtype">int</span> uart1GetByte(<span class="keywordtype">void</span>); |
||
179 | 00172 <span class="comment"></span> |
||
180 | 00173 <span class="comment">//! Gets a single byte from the uart receive buffer.</span> |
||
181 | 00174 <span class="comment">/// Function returns TRUE if data was available, FALSE if not.</span> |
||
182 | 00175 <span class="comment">/// Actual data is returned in variable pointed to by "data".</span> |
||
183 | 00176 <span class="comment">/// Example usage:</span> |
||
184 | 00177 <span class="comment">/// \code</span> |
||
185 | 00178 <span class="comment">/// char myReceivedByte;</span> |
||
186 | 00179 <span class="comment">/// uartReceiveByte(0, &myReceivedByte );</span> |
||
187 | 00180 <span class="comment">/// \endcode</span> |
||
188 | 00181 <span class="comment"></span>u08 <a class="code" href="group__uart.html#ga8">uartReceiveByte</a>(u08 nUart, u08* data); |
||
189 | 00182 <span class="comment"></span> |
||
190 | 00183 <span class="comment">//! Returns TRUE/FALSE if receive buffer is empty/not-empty.</span> |
||
191 | 00184 <span class="comment">///</span> |
||
192 | 00185 <span class="comment"></span>u08 <a class="code" href="group__uart.html#ga9">uartReceiveBufferIsEmpty</a>(u08 nUart); |
||
193 | 00186 <span class="comment"></span> |
||
194 | 00187 <span class="comment">//! Flushes (deletes) all data from receive buffer.</span> |
||
195 | 00188 <span class="comment">///</span> |
||
196 | 00189 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga10">uartFlushReceiveBuffer</a>(u08 nUart); |
||
197 | 00190 <span class="comment"></span> |
||
198 | 00191 <span class="comment">//! Add byte to end of uart Tx buffer.</span> |
||
199 | 00192 <span class="comment">///</span> |
||
200 | 00193 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga11">uartAddToTxBuffer</a>(u08 nUart, u08 data); |
||
201 | 00194 <span class="comment"></span> |
||
202 | 00195 <span class="comment">//! AddToTxBuffer commands with the UART number hardcoded</span> |
||
203 | 00196 <span class="comment">/// Use this with printfInit() - example: \c printfInit(uart0AddToTxBuffer);</span> |
||
204 | 00197 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart2.html#ga18">uart0AddToTxBuffer</a>(u08 data); |
||
205 | 00198 <span class="keywordtype">void</span> uart1AddToTxBuffer(u08 data); |
||
206 | 00199 <span class="comment"></span> |
||
207 | 00200 <span class="comment">//! Begins transmission of the transmit buffer under interrupt control.</span> |
||
208 | 00201 <span class="comment">///</span> |
||
209 | 00202 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart.html#ga12">uartSendTxBuffer</a>(u08 nUart); |
||
210 | 00203 <span class="comment"></span> |
||
211 | 00204 <span class="comment">//! sends a buffer of length nBytes via the uart using interrupt control.</span> |
||
212 | 00205 <span class="comment">///</span> |
||
213 | 00206 <span class="comment"></span>u08 <a class="code" href="group__uart.html#ga13">uartSendBuffer</a>(u08 nUart, <span class="keywordtype">char</span> *buffer, u16 nBytes); |
||
214 | 00207 <span class="comment"></span> |
||
215 | 00208 <span class="comment">//! interrupt service handlers</span> |
||
216 | 00209 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="group__uart2.html#ga22">uartTransmitService</a>(u08 nUart); |
||
217 | 00210 <span class="keywordtype">void</span> uartReceiveService(u08 nUart); |
||
218 | 00211 |
||
219 | 00212 <span class="preprocessor">#endif</span> |
||
220 | 00213 <span class="preprocessor"></span> |
||
221 | </pre></div><hr size="1"><address style="align: right;"><small>Generated on Sun Oct 29 03:41:08 2006 for Procyon AVRlib by |
||
222 | <a href="http://www.doxygen.org/index.html"> |
||
223 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.2 </small></address> |
||
224 | </body> |
||
225 | </html> |
Powered by WebSVN v2.8.3