Subversion Repositories HomeAutomation

Rev

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

  1. #ifndef SERIAL_H_
  2. #define SERIAL_H_
  3.  
  4. /*-----------------------------------------------------------------------------
  5.  * Defines
  6.  *---------------------------------------------------------------------------*/
  7. #define UART_RX_BUFFER_SIZE     SERIAL_RX_BUFFER_SIZE
  8. #define UART_TX_BUFFER_SIZE     SERIAL_TX_BUFFER_SIZE
  9.  
  10. #ifndef CAN_PRINTF
  11. #define CAN_PRINTF 0
  12. #endif
  13.  
  14. /*-----------------------------------------------------------------------------
  15.  * Public Function Prototypes
  16.  *---------------------------------------------------------------------------*/
  17. void Serial_Init(void);
  18.  
  19.  
  20. #endif /*SERIAL_H_*/
  21.