From: Ivan Grokhotkov Date: Thu, 25 Oct 2018 04:56:56 +0000 (+0800) Subject: esp32: fix typos in rom/uart.h X-Git-Tag: v3.3-beta1~96^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5fb3d59a925020edc0396bb2a8f1faabbee5d0bc;p=esp-idf esp32: fix typos in rom/uart.h --- diff --git a/components/esp32/include/rom/uart.h b/components/esp32/include/rom/uart.h index 8722445734..a010bfbca4 100644 --- a/components/esp32/include/rom/uart.h +++ b/components/esp32/include/rom/uart.h @@ -36,7 +36,7 @@ extern "C" { #define RX_BUFF_SIZE 0x100 #define TX_BUFF_SIZE 100 -//uart int enalbe register ctrl bits +//uart int enable register ctrl bits #define UART_RCV_INTEN BIT0 #define UART_TRX_INTEN BIT1 #define UART_LINE_STATUS_INTEN BIT2 @@ -301,14 +301,14 @@ char uart_rx_one_char_block(void); * * @param uint8_t *pString : the pointer to store the string. * - * @param uint8_t MaxStrlen : the max string length, incude '\0'. + * @param uint8_t MaxStrlen : the max string length, include '\0'. * * @return OK. */ STATUS UartRxString(uint8_t *pString, uint8_t MaxStrlen); /** - * @brief Process uart recevied information in the interrupt handler. + * @brief Process uart received information in the interrupt handler. * Please do not call this function in SDK. * * @param void *para : the message receive buffer.