From fd1e31dec453a735c8ac1f8c281405d0ea2a2944 Mon Sep 17 00:00:00 2001 From: Ken Van Hoeylandt Date: Sun, 9 Feb 2025 00:00:14 +0100 Subject: [PATCH] Fix serial config for T-Deck (#213) Port 0 clashed with the serial monitor and affected performance. --- Boards/LilygoTdeck/Source/LilygoTdeck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boards/LilygoTdeck/Source/LilygoTdeck.cpp b/Boards/LilygoTdeck/Source/LilygoTdeck.cpp index 834fd571..4c1c9278 100644 --- a/Boards/LilygoTdeck/Source/LilygoTdeck.cpp +++ b/Boards/LilygoTdeck/Source/LilygoTdeck.cpp @@ -83,7 +83,7 @@ extern const tt::hal::Configuration lilygo_tdeck = { }, .uart { tt::hal::uart::Configuration { - .port = UART_NUM_0, + .port = UART_NUM_1, .initMode = tt::hal::uart::InitMode::ByTactility, .canReinit = false, .hasMutableConfiguration = false,