From baaee5f6ffd1d51cb80b06eca6acbc830dabebec Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Wed, 22 Jul 2026 21:20:48 +0200 Subject: [PATCH] logging: Only print to jtag-serial Otherwise esp-println will use UART0 when no USB-JTAG/Serial is connected. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ac69615..f322c5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ esp-backtrace = { version = "0.19.0", optional = true, features = [ "panic-handler", "println", ] } -esp-println = { version = "0.17.0", optional = true, features = ["esp32c5", "log-04"] } +esp-println = { version = "0.17.0", optional = true, default-features = false, features = ["colors", "critical-section", "jtag-serial", "esp32c5", "log-04"] } esp-radio = { version = "0.18.0", optional = true, features = [ "esp-alloc", "esp32c5",