#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
*
* @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.