Subversion Repositories HomeAutomation

Rev

Rev 73 | Blame | Last modification | View Log | SVN | RSS feed

  1. /**
  2.  * Configuration file for the UART software module.
  3.  */
  4.  
  5. #ifndef UART_CFG_H_
  6. #define UART_CFG_H_
  7.  
  8. /*-----------------------------------------------------------------------------
  9.  * Defines
  10.  *---------------------------------------------------------------------------*/
  11.  
  12. /** UART baudrate */
  13. #define BAUD 115200
  14. /** Size of the circular receive buffer, must be power of 2 */
  15. #define UART_RX_BUFFER_SIZE 8
  16. /** Size of the circular transmit buffer, must be power of 2 */
  17. #define UART_TX_BUFFER_SIZE 64
  18.  
  19. #endif /*UART_CFG_H_*/
  20.