Subversion Repositories HomeAutomation

Rev

Rev 690 | Rev 2023 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 690 Rev 1576
Line 74... Line 74...
74
*/
74
*/
75
#define UART_FRAME_ERROR      0x0800              /* Framing Error by UART       */
75
#define UART_FRAME_ERROR      0x0800              /* Framing Error by UART       */
76
#define UART_OVERRUN_ERROR    0x0400              /* Overrun condition by UART   */
76
#define UART_OVERRUN_ERROR    0x0400              /* Overrun condition by UART   */
77
#define UART_BUFFER_OVERFLOW  0x0200              /* receive ringbuffer overflow */
77
#define UART_BUFFER_OVERFLOW  0x0200              /* receive ringbuffer overflow */
78
#define UART_NO_DATA          0x0100              /* no receive data available   */
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);
79
 
84
 
80
 
85
 
81
/*
86
/*
82
** function prototypes
87
** function prototypes
83
*/
88
*/