File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -236,11 +236,11 @@ void HardwareSerial::_uartEventTask(void *args)
236
236
uart->_onReceiveCB ();
237
237
break ;
238
238
case UART_FIFO_OVF:
239
- log_v (" UART%d FIFO Overflow. Consider adding Hardware Flow Control to your Application." , uart->_uart_nr );
239
+ log_w (" UART%d FIFO Overflow. Consider adding Hardware Flow Control to your Application." , uart->_uart_nr );
240
240
currentErr = UART_FIFO_OVF_ERROR;
241
241
break ;
242
242
case UART_BUFFER_FULL:
243
- log_v (" UART%d Buffer Full. Consider increasing your buffer size of your Application." , uart->_uart_nr );
243
+ log_w (" UART%d Buffer Full. Consider increasing your buffer size of your Application." , uart->_uart_nr );
244
244
currentErr = UART_BUFFER_FULL_ERROR;
245
245
break ;
246
246
case UART_BREAK:
You can’t perform that action at this time.
0 commit comments