From e2a47dea9e5975df5a8b942d81aa6eed8be975dc Mon Sep 17 00:00:00 2001 From: RouBiiing <15582561+roubiiing@user.noreply.gitee.com> Date: Fri, 28 Nov 2025 12:18:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Duart=5Fdemo=E7=9A=84kc?= =?UTF-8?q?onfig=E7=9A=84=E9=85=8D=E7=BD=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/application/samples/peripheral/uart/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/application/samples/peripheral/uart/Kconfig b/src/application/samples/peripheral/uart/Kconfig index ccc0d0b19..a0121b51e 100755 --- a/src/application/samples/peripheral/uart/Kconfig +++ b/src/application/samples/peripheral/uart/Kconfig @@ -12,25 +12,25 @@ config UART_TXD_PIN int prompt "Choose UART TXD pin." depends on SAMPLE_SUPPORT_UART - default 17 + default 15 config UART_RXD_PIN int prompt "Choose UART RXD pin." depends on SAMPLE_SUPPORT_UART - default 18 + default 16 config UART_TXD_PIN_MODE int prompt "Choose UART TXD pin mode." depends on SAMPLE_SUPPORT_UART - default 25 + default 1 config UART_RXD_PIN_MODE int prompt "Choose UART RXD pin mode." depends on SAMPLE_SUPPORT_UART - default 24 + default 1 config UART_SUPPORT_INT_MODE bool -- Gitee