mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
feat: Adjust log level about UART
There are too many log when UART baud is around 2Mbps if not use hard flow control.
This commit is contained in:
parent
77eae33a7e
commit
973913b151
@ -837,7 +837,7 @@ static void uart_rx_intr_handler_default(void *param)
|
||||
p_uart->rx_buffered_len + pat_idx);
|
||||
}
|
||||
if ((p_uart->xQueueUart != NULL) && (pdFALSE == xQueueSendFromISR(p_uart->xQueueUart, (void * )&uart_event, &HPTaskAwoken))) {
|
||||
ESP_EARLY_LOGW(UART_TAG, "UART event queue full");
|
||||
ESP_EARLY_LOGV(UART_TAG, "UART event queue full");
|
||||
}
|
||||
}
|
||||
uart_event.type = UART_BUFFER_FULL;
|
||||
@ -923,7 +923,7 @@ static void uart_rx_intr_handler_default(void *param)
|
||||
|
||||
if(uart_event.type != UART_EVENT_MAX && p_uart->xQueueUart) {
|
||||
if (pdFALSE == xQueueSendFromISR(p_uart->xQueueUart, (void * )&uart_event, &HPTaskAwoken)) {
|
||||
ESP_EARLY_LOGW(UART_TAG, "UART event queue full");
|
||||
ESP_EARLY_LOGV(UART_TAG, "UART event queue full");
|
||||
}
|
||||
if(HPTaskAwoken == pdTRUE) {
|
||||
portYIELD_FROM_ISR() ;
|
||||
|
Loading…
x
Reference in New Issue
Block a user