uart driver: Move UART_EVENT_MAX to last

Merges https://github.com/espressif/esp-idf/pull/594
pull/288/merge
zelll 2017-05-11 21:59:50 +08:00 zatwierdzone przez Angus Gratton
rodzic 66191fc0b5
commit 0b447db8d8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -129,8 +129,8 @@ typedef enum {
UART_FRAME_ERR, /*!< UART RX frame error event*/
UART_PARITY_ERR, /*!< UART RX parity event*/
UART_DATA_BREAK, /*!< UART TX data and break event*/
UART_PATTERN_DET, /*!< UART pattern detected */
UART_EVENT_MAX, /*!< UART event max index*/
UART_PATTERN_DET, /*!< UART pattern detected */
} uart_event_type_t;
/**