From 8a1489c291091780c8d0e1f0a09b0c8c77ea4832 Mon Sep 17 00:00:00 2001 From: fangzhenwei Date: Mon, 5 Sep 2022 22:50:37 +0800 Subject: [PATCH] driver/h4:increase h4 uart tx/rx buffer default size tx buffer size 1024 to 2048 rx buffer size 1024 to 8096 Signed-off-by: fangzhenwei --- drivers/serial/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 4cd31f3f86..85625bc67c 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -724,15 +724,15 @@ if UART_BTH4 config UART_BTH4_TXBUFSIZE int "BT H4 uart TX buffer size" - default 1024 + default 2048 ---help--- - H4 UART TX buffer size. Default: 1024 + H4 UART TX buffer size. Default: 2048 config UART_BTH4_RXBUFSIZE int "BT H4 uart RX buffer size" - default 1024 + default 8096 ---help--- - H4 UART RX buffer size. Default: 1024 + H4 UART RX buffer size. Default: 8096 config UART_BTH4_NPOLLWAITERS int "Number of poll threads"