From f3255fdd035ac445d98bdf00ff9272ccce4cd2c5 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Fri, 16 May 2025 13:45:57 -0700 Subject: [PATCH] tests: debug/gdbstub: add an overlay for ESP-WROVER-KIT Add an overlay in the GDB stub test for ESP-WROVER-KIT board to enable using its UART for remote GDB communication. Signed-off-by: Daniel Leung --- .../gdbstub/boards/esp_wrover_kit_esp32_procpu.overlay | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/subsys/debug/gdbstub/boards/esp_wrover_kit_esp32_procpu.overlay diff --git a/tests/subsys/debug/gdbstub/boards/esp_wrover_kit_esp32_procpu.overlay b/tests/subsys/debug/gdbstub/boards/esp_wrover_kit_esp32_procpu.overlay new file mode 100644 index 00000000000..c21e56a250b --- /dev/null +++ b/tests/subsys/debug/gdbstub/boards/esp_wrover_kit_esp32_procpu.overlay @@ -0,0 +1,7 @@ +/* SPDX-License-Identifier: Apache-2.0 */ + +/ { + chosen { + zephyr,gdbstub-uart = &uart0; + }; +};