diff options
Diffstat (limited to 'esp8266/uart.h')
-rw-r--r-- | esp8266/uart.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/esp8266/uart.h b/esp8266/uart.h index 21894d3fa6..2b97683ff8 100644 --- a/esp8266/uart.h +++ b/esp8266/uart.h @@ -1,6 +1,8 @@ #ifndef _INCLUDED_UART_H_ #define _INCLUDED_UART_H_ +#include <eagle_soc.h> + #define UART0 (0) #define UART1 (1) @@ -18,14 +20,14 @@ typedef enum { } UartStopBitsNum; typedef enum { - UART_NONE_BITS = 0, - UART_ODD_BITS = 0, - UART_EVEN_BITS = BIT4 + UART_NONE_BITS = 0, + UART_ODD_BITS = BIT0, + UART_EVEN_BITS = 0 } UartParityMode; typedef enum { UART_STICK_PARITY_DIS = 0, - UART_STICK_PARITY_EN = BIT3 | BIT5 + UART_STICK_PARITY_EN = BIT1 } UartExistParity; typedef enum { |