ini
[aversive.git] / modules / comm / uart / uart_defs.h
1 /*  \r
2  *  Copyright Droids Corporation, Microb Technology, Eirbot (2005)\r
3  * \r
4  *  This program is free software; you can redistribute it and/or modify\r
5  *  it under the terms of the GNU General Public License as published by\r
6  *  the Free Software Foundation; either version 2 of the License, or\r
7  *  (at your option) any later version.\r
8  *\r
9  *  This program is distributed in the hope that it will be useful,\r
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  *  GNU General Public License for more details.\r
13  *\r
14  *  You should have received a copy of the GNU General Public License\r
15  *  along with this program; if not, write to the Free Software\r
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
17  *\r
18  *  Revision : $Id: uart_defs.h,v 1.2.4.13 2009-06-29 20:28:27 zer0 Exp $\r
19  *\r
20  */\r
21 \r
22 /* Olivier MATZ, Droids-corp 2004 - 2006\r
23  * Uart specific definitions\r
24  */\r
25 \r
26 #ifndef _UART_DEFS_H_\r
27 #define _UART_DEFS_H_\r
28 \r
29 #define UART_PARTITY_NONE 0\r
30 #define UART_PARTITY_ODD 1\r
31 #define UART_PARTITY_EVEN 2\r
32 \r
33 #define UART_STOP_BITS_1 0\r
34 #define UART_STOP_BITS_2 1\r
35 \r
36 #if (defined UDR3)\r
37 #define UART_HW_NUM 4\r
38 #elif (defined UDR2)\r
39 #define UART_HW_NUM 3\r
40 #elif (defined UDR1)\r
41 #define UART_HW_NUM 2\r
42 #else /* assume 1 uart */\r
43 #define UART_HW_NUM 1\r
44 #endif\r
45 \r
46 \r
47 /* For arch with only one UART, we consider that UART0 = UART */\r
48 #if !defined(SIG_UART0_DATA) && !defined(SIG_USART0_DATA)\r
49 #if defined SIG_UART_DATA\r
50 #define SIG_UART0_DATA SIG_UART_DATA\r
51 #elif defined SIG_USART_DATA\r
52 #define SIG_UART0_DATA SIG_USART_DATA\r
53 #endif\r
54 #endif\r
55 \r
56 #if !defined(SIG_UART0_RECV) && !defined(SIG_USART0_RECV)\r
57 #if defined SIG_UART_RECV\r
58 #define SIG_UART0_RECV  SIG_UART_RECV\r
59 #elif defined SIG_USART_RECV\r
60 #define SIG_UART0_RECV  SIG_USART_RECV\r
61 #endif\r
62 #endif\r
63 \r
64 #ifndef UDR0\r
65 #define UDR0 UDR\r
66 #endif\r
67 #ifndef UCSR0A\r
68 #define UCSR0A UCSRA\r
69 #endif\r
70 #ifndef UCSR0B\r
71 #define UCSR0B UCSRB\r
72 #endif\r
73 #ifndef UCSR0C\r
74 #define UCSR0C UCSRC\r
75 #endif\r
76 #ifndef UBRR0L\r
77 #define UBRR0L UBRRL\r
78 #endif\r
79 #ifndef UBRR0H\r
80 #define UBRR0H UBRRH\r
81 #endif\r
82 #ifndef U2X \r
83 #define U2X U2X0\r
84 #endif\r
85 #ifndef UCSZ0 \r
86 #define UCSZ0 UCSZ00\r
87 #endif\r
88 #ifndef UCSZ1 \r
89 #define UCSZ1 UCSZ01\r
90 #endif\r
91 #ifndef UCSZ2 \r
92 #define UCSZ2 UCSZ02\r
93 #endif\r
94 #ifndef UPM0 \r
95 #define UPM0 UPM00\r
96 #endif\r
97 #ifndef UPM1 \r
98 #define UPM1 UPM01\r
99 #endif\r
100 #ifndef USBS \r
101 #define USBS USBS0\r
102 #endif\r
103 #ifndef TXEN \r
104 #define TXEN TXEN0\r
105 #endif\r
106 #ifndef TXCIE \r
107 #define TXCIE TXCIE0\r
108 #endif\r
109 #ifndef RXEN \r
110 #define RXEN RXEN0\r
111 #endif\r
112 #ifndef RXCIE \r
113 #define RXCIE RXCIE0\r
114 #endif\r
115 #ifndef TXC \r
116 #define TXC TXC0\r
117 #endif\r
118 #ifndef RXB8\r
119 #define RXB8 RXB80\r
120 #endif\r
121 #ifndef UDRIE\r
122 #define UDRIE UDRIE0\r
123 #endif\r
124 #ifndef UDRE\r
125 #define UDRE UDRE0\r
126 #endif\r
127 \r
128 /* makes functions more generic, we associate USR and UCR with UCSRA\r
129  * and UCSRB, respectively */\r
130 #if ( ! defined UCSRA ) && ( defined USR )\r
131 #define UCSRA USR\r
132 #endif\r
133 \r
134 #if ( ! defined UCSRB ) && ( defined UCR )\r
135 #define UCSRB UCR\r
136 #endif\r
137 \r
138 /* UBRR is UBRRL */\r
139 #ifndef UBRRL\r
140 #define UBRRL UBRR\r
141 #endif\r
142 \r
143 \r
144 /* workaround for libc incomplete headers when using CAN AVR\r
145  * (avr/iocanxx.h): USART is valid.\r
146  * see http://savannah.nongnu.org/bugs/?18964\r
147  */\r
148 #if defined (__AVR_AT90CAN128__) || defined (__AVR_AT90CAN64__) || defined (__AVR_AT90CAN32__)\r
149 \r
150 #ifndef SIG_USART0_RECV\r
151 #define SIG_USART0_RECV SIG_UART0_RECV\r
152 #define SIG_USART1_RECV SIG_UART1_RECV\r
153 #define SIG_USART0_DATA SIG_UART0_DATA\r
154 #define SIG_USART1_DATA SIG_UART1_DATA\r
155 #define SIG_USART0_TRANS SIG_UART0_TRANS\r
156 #define SIG_USART1_TRANS SIG_UART1_TRANS\r
157 #endif\r
158 \r
159 #endif\r
160 \r
161 \r
162 /* if the signal USART is defined, the uC has a USART. */\r
163 #if ( defined SIG_USART0_RECV ) || ( defined SIG_USART_RECV ) \r
164 #define UART_IS_USART 1\r
165 #elif (defined USART_UDRE_vect) || (defined USART_TXC_vect) || (defined USART_RXC_vect)\r
166 #define UART_IS_USART 1\r
167 #else\r
168 #define UART_IS_USART 0\r
169 #endif\r
170 \r
171 /* if the U2X macro is defined, the uC has the U2X option. */\r
172 #ifdef U2X\r
173 #define UART_HAS_U2X 1\r
174 #else\r
175 #define UART_HAS_U2X 0\r
176 #endif\r
177 \r
178 #endif //_UART_DEFS_H_\r