Subversion Repositories HomeAutomation

Rev

Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
60 jimmy 1
#ifndef UART_H
2
#define UART_H
3
/************************************************************************
149 jimmy 4
Title:    Interrupt UART library with receive/transmit circular buffers
5
Author:   Peter Fleury <pfleury@gmx.ch>   http://jump.to/fleury
6
File:     $Id: uart.h,v 1.7.2.5 2005/08/14 11:25:41 Peter Exp $
7
Software: AVR-GCC 3.3
8
Hardware: any AVR with built-in UART, tested on AT90S8515 at 4 Mhz
9
Usage:    see Doxygen manual
60 jimmy 10
************************************************************************/
11
 
12
/**
13
 *  @defgroup pfleury_uart UART Library
14
 *  @code #include <uart.h> @endcode
15
 *
16
 *  @brief Interrupt UART library using the built-in UART with transmit and receive circular buffers.
17
 *
18
 *  This library can be used to transmit and receive data through the built in UART.
19
 *
20
 *  An interrupt is generated when the UART has finished transmitting or
21
 *  receiving a byte. The interrupt handling routines use circular buffers
22
 *  for buffering received and transmitted data.
23
 *
24
 *  The UART_RX_BUFFER_SIZE and UART_TX_BUFFER_SIZE constants define
25
 *  the size of the circular buffers in bytes. Note that these constants must be a power of 2.
149 jimmy 26
 *  You may need to adapt this constants to your target and your application by adding
27
 *  CDEFS += -DUART_RX_BUFFER_SIZE=nn -DUART_RX_BUFFER_SIZE=nn to your Makefile.
60 jimmy 28
 *
29
 *  @note Based on Atmel Application Note AVR306
30
 *  @author Peter Fleury pfleury@gmx.ch  http://jump.to/fleury
31
 */
32
 
149 jimmy 33
/**@{*/
60 jimmy 34
 
149 jimmy 35
 
36
#if (__GNUC__ * 100 + __GNUC_MINOR__) < 304
37
#error "This library requires AVR-GCC 3.4 or later, update to newer AVR-GCC compiler !"
60 jimmy 38
#endif
39
 
40
 
41
/*
42
** constants and macros
43
*/
44
 
45
/** @brief  UART Baudrate Expression
149 jimmy 46
 *  @param  xtalcpu  system clock in Mhz, e.g. 4000000L for 4Mhz          
60 jimmy 47
 *  @param  baudrate baudrate in bps, e.g. 1200, 2400, 9600    
48
 */
49
#define UART_BAUD_SELECT(baudRate,xtalCpu) ((xtalCpu)/((baudRate)*16l)-1)
50
 
149 jimmy 51
/** @brief  UART Baudrate Expression for ATmega double speed mode
52
 *  @param  xtalcpu  system clock in Mhz, e.g. 4000000L for 4Mhz          
53
 *  @param  baudrate baudrate in bps, e.g. 1200, 2400, 9600    
54
 */
55
#define UART_BAUD_SELECT_DOUBLE_SPEED(baudRate,xtalCpu) (((xtalCpu)/((baudRate)*8l)-1)|0x8000)
60 jimmy 56
 
149 jimmy 57
 
58
/** Size of the circular receive buffer, must be power of 2 */
59
#ifndef UART_RX_BUFFER_SIZE
60
#define UART_RX_BUFFER_SIZE 32
60 jimmy 61
#endif
149 jimmy 62
/** Size of the circular transmit buffer, must be power of 2 */
63
#ifndef UART_TX_BUFFER_SIZE
64
#define UART_TX_BUFFER_SIZE 32
65
#endif
60 jimmy 66
 
149 jimmy 67
/* test if the size of the circular buffers fits into SRAM */
68
#if ( (UART_RX_BUFFER_SIZE+UART_TX_BUFFER_SIZE) >= (RAMEND-0x60 ) )
69
//#error "size of UART_RX_BUFFER_SIZE + UART_TX_BUFFER_SIZE larger than size of SRAM"
70
#endif
60 jimmy 71
 
72
/*
73
** high byte error return code of uart_getc()
74
*/
75
#define UART_FRAME_ERROR      0x0800              /* Framing Error by UART       */
76
#define UART_OVERRUN_ERROR    0x0400              /* Overrun condition by UART   */
77
#define UART_BUFFER_OVERFLOW  0x0200              /* receive ringbuffer overflow */
78
#define UART_NO_DATA          0x0100              /* no receive data available   */
79
 
80
 
149 jimmy 81
/*
82
** function prototypes
83
*/
60 jimmy 84
 
149 jimmy 85
/**
86
   @brief   Initialize UART and set baudrate
87
   @param   baudrate Specify baudrate using macro UART_BAUD_SELECT()
88
   @return  none
89
*/
90
extern void uart_init(unsigned int baudrate);
60 jimmy 91
 
92
 
93
/**
94
 *  @brief   Get received byte from ringbuffer
95
 *
96
 * Returns in the lower byte the received character and in the
97
 * higher byte the last receive error.
98
 * UART_NO_DATA is returned when no data is available.
99
 *
100
 *  @param   void
101
 *  @return  lower byte:  received byte from ringbuffer
102
 *  @return  higher byte: last receive status
103
 *           - \b 0 successfully received data from UART
104
 *           - \b UART_NO_DATA          
105
 *             <br>no receive data available
106
 *           - \b UART_BUFFER_OVERFLOW  
107
 *             <br>Receive ringbuffer overflow.
108
 *             We are not reading the receive buffer fast enough,
109
 *             one or more received character have been dropped
110
 *           - \b UART_OVERRUN_ERROR    
111
 *             <br>Overrun condition by UART.
112
 *             A character already present in the UART UDR register was
113
 *             not read by the interrupt handler before the next character arrived,
114
 *             one or more received characters have been dropped.
115
 *           - \b UART_FRAME_ERROR      
116
 *             <br>Framing Error by UART
117
 */
118
extern unsigned int uart_getc(void);
119
 
120
 
121
/**
122
 *  @brief   Put byte to ringbuffer for transmitting via UART
123
 *  @param   data byte to be transmitted
124
 *  @return  none
125
 */
126
extern void uart_putc(unsigned char data);
127
 
128
 
129
/**
130
 *  @brief   Put string to ringbuffer for transmitting via UART
131
 *
132
 *  The string is buffered by the uart library in a circular buffer
133
 *  and one character at a time is transmitted to the UART using interrupts.
134
 *  Blocks if it can not write the whole string into the circular buffer.
135
 *
136
 *  @param   s string to be transmitted
137
 *  @return  none
138
 */
139
extern void uart_puts(const char *s );
140
 
141
 
142
/**
143
 * @brief    Put string from program memory to ringbuffer for transmitting via UART.
144
 *
145
 * The string is buffered by the uart library in a circular buffer
146
 * and one character at a time is transmitted to the UART using interrupts.
147
 * Blocks if it can not write the whole string into the circular buffer.
148
 *
149
 * @param    s program memory string to be transmitted
150
 * @return   none
151
 * @see      uart_puts_P
152
 */
153
extern void uart_puts_p(const char *s );
154
 
155
/**
156
 * @brief    Macro to automatically put a string constant into program memory
157
 */
149 jimmy 158
#define uart_puts_P(__s)       uart_puts_p(PSTR(__s))
60 jimmy 159
 
160
 
161
 
149 jimmy 162
/** @brief  Initialize USART1 (only available on selected ATmegas) @see uart_init */
163
extern void uart1_init(unsigned int baudrate);
164
/** @brief  Get received byte of USART1 from ringbuffer. (only available on selected ATmega) @see uart_getc */
165
extern unsigned int uart1_getc(void);
166
/** @brief  Put byte to ringbuffer for transmitting via USART1 (only available on selected ATmega) @see uart_putc */
167
extern void uart1_putc(unsigned char data);
168
/** @brief  Put string to ringbuffer for transmitting via USART1 (only available on selected ATmega) @see uart_puts */
169
extern void uart1_puts(const char *s );
170
/** @brief  Put string from program memory to ringbuffer for transmitting via USART1 (only available on selected ATmega) @see uart_puts_p */
171
extern void uart1_puts_p(const char *s );
172
/** @brief  Macro to automatically put a string constant into program memory */
173
#define uart1_puts_P(__s)       uart1_puts_p(PSTR(__s))
60 jimmy 174
 
149 jimmy 175
/**@}*/
60 jimmy 176
 
149 jimmy 177
 
60 jimmy 178
#endif // UART_H 
179