Subversion Repositories HomeAutomation

Rev

Rev 2023 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. #ifndef UART_H
  2. #define UART_H
  3. /************************************************************************
  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
  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.
  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.
  28.  *
  29.  *  @note Based on Atmel Application Note AVR306
  30.  *  @author Peter Fleury pfleury@gmx.ch  http://jump.to/fleury
  31.  */
  32.  
  33. /**@{*/
  34.  
  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 !"
  38. #endif
  39.  
  40.  
  41. /*
  42. ** constants and macros
  43. */
  44.  
  45. /** @brief  UART Baudrate Expression
  46.  *  @param  xtalCpu  system clock in Mhz, e.g. 4000000L for 4Mhz          
  47.  *  @param  baudRate baudrate in bps, e.g. 1200, 2400, 9600    
  48.  */
  49. #define UART_BAUD_SELECT(baudRate,xtalCpu) ((xtalCpu)/((baudRate)*16l)-1)
  50.  
  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)
  56.  
  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
  61. #endif
  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
  66.  
  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
  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.  
  81. void uart_setParity(uint8_t enabled, uint8_t odd);
  82. void uart_setStopbits(uint8_t nrStopbits);
  83. void uart_setDatabits(uint8_t nrDatabits);
  84.  
  85.  
  86. /*
  87. ** function prototypes
  88. */
  89.  
  90. /**
  91.    @brief   Initialize UART and set baudrate
  92.    @param   baudrate Specify baudrate using macro UART_BAUD_SELECT()
  93.    @return  none
  94. */
  95. extern void uart_init(unsigned int baudrate);
  96.  
  97.  
  98. /**
  99.  *  @brief   Get received byte from ringbuffer
  100.  *
  101.  * Returns in the lower byte the received character and in the
  102.  * higher byte the last receive error.
  103.  * UART_NO_DATA is returned when no data is available.
  104.  *
  105.  *  @return  lower byte:  received byte from ringbuffer
  106.  *  @return  higher byte: last receive status
  107.  *           - \b 0 successfully received data from UART
  108.  *           - \b UART_NO_DATA          
  109.  *             <br>no receive data available
  110.  *           - \b UART_BUFFER_OVERFLOW  
  111.  *             <br>Receive ringbuffer overflow.
  112.  *             We are not reading the receive buffer fast enough,
  113.  *             one or more received character have been dropped
  114.  *           - \b UART_OVERRUN_ERROR    
  115.  *             <br>Overrun condition by UART.
  116.  *             A character already present in the UART UDR register was
  117.  *             not read by the interrupt handler before the next character arrived,
  118.  *             one or more received characters have been dropped.
  119.  *           - \b UART_FRAME_ERROR      
  120.  *             <br>Framing Error by UART
  121.  */
  122. extern unsigned int uart_getc(void);
  123.  
  124.  
  125. /**
  126.  *  @brief   Put byte to ringbuffer for transmitting via UART
  127.  *  @param   data byte to be transmitted
  128.  *  @return  none
  129.  */
  130. extern void uart_putc(unsigned char data);
  131.  
  132.  
  133. /**
  134.  *  @brief   Put string to ringbuffer for transmitting via UART
  135.  *
  136.  *  The string is buffered by the uart library in a circular buffer
  137.  *  and one character at a time is transmitted to the UART using interrupts.
  138.  *  Blocks if it can not write the whole string into the circular buffer.
  139.  *
  140.  *  @param   s string to be transmitted
  141.  *  @return  none
  142.  */
  143. extern void uart_puts(const char *s );
  144.  
  145.  
  146. /**
  147.  * @brief    Put string from program memory to ringbuffer for transmitting via UART.
  148.  *
  149.  * The string is buffered by the uart library in a circular buffer
  150.  * and one character at a time is transmitted to the UART using interrupts.
  151.  * Blocks if it can not write the whole string into the circular buffer.
  152.  *
  153.  * @param    s program memory string to be transmitted
  154.  * @return   none
  155.  * @see      uart_puts_P
  156.  */
  157. extern void uart_puts_p(const char *s );
  158.  
  159. /**
  160.  * @brief    Macro to automatically put a string constant into program memory
  161.  */
  162. #define uart_puts_P(__s)       uart_puts_p(PSTR(__s))
  163.  
  164.  
  165.  
  166. /** @brief  Initialize USART1 (only available on selected ATmegas) @see uart_init */
  167. extern void uart1_init(unsigned int baudrate);
  168. /** @brief  Get received byte of USART1 from ringbuffer. (only available on selected ATmega) @see uart_getc */
  169. extern unsigned int uart1_getc(void);
  170. /** @brief  Put byte to ringbuffer for transmitting via USART1 (only available on selected ATmega) @see uart_putc */
  171. extern void uart1_putc(unsigned char data);
  172. /** @brief  Put string to ringbuffer for transmitting via USART1 (only available on selected ATmega) @see uart_puts */
  173. extern void uart1_puts(const char *s );
  174. /** @brief  Put string from program memory to ringbuffer for transmitting via USART1 (only available on selected ATmega) @see uart_puts_p */
  175. extern void uart1_puts_p(const char *s );
  176. /** @brief  Macro to automatically put a string constant into program memory */
  177. #define uart1_puts_P(__s)       uart1_puts_p(PSTR(__s))
  178.  
  179. /**@}*/
  180.  
  181.  
  182. #endif // UART_H
  183.  
  184.