From 8e37d8c57da1f650651969316255a2f6dd832da6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 11 Mar 2026 11:41:07 -1000 Subject: [PATCH] Remove misleading serial console hint for RISC-V MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IDF doesn't decode RISC-V backtraces on the console either — it just dumps raw stack memory. Our crash handler provides a better trace. Co-Authored-By: J. Nick Koston --- esphome/components/esp32/crash_handler.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/esphome/components/esp32/crash_handler.cpp b/esphome/components/esp32/crash_handler.cpp index 06a87293238..0ee984d49f0 100644 --- a/esphome/components/esp32/crash_handler.cpp +++ b/esphome/components/esp32/crash_handler.cpp @@ -114,9 +114,6 @@ void crash_handler_log() { pos += snprintf(hint + pos, sizeof(hint) - pos, " 0x%08" PRIX32, addr); } ESP_LOGE(TAG, "%s", hint); -#if CONFIG_IDF_TARGET_ARCH_RISCV - ESP_LOGE(TAG, "RISC-V backtrace is best-effort. Check serial console for full register dump."); -#endif } } // namespace esphome::esp32