From 4e081c10b6d97cb29c3ad7739c131ff57b0258f9 Mon Sep 17 00:00:00 2001 From: vinicius Date: Mon, 23 Jun 2025 18:35:28 +0200 Subject: [PATCH] Update debugging.rst - Add right path for debug (nuttx /) - Support for debug not only on ESP32 arch (target extended-remote) but also for STM32 chip arch (target remote :3333) --- Documentation/quickstart/debugging.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/quickstart/debugging.rst b/Documentation/quickstart/debugging.rst index 96c6eed8507..dd5c632ba34 100644 --- a/Documentation/quickstart/debugging.rst +++ b/Documentation/quickstart/debugging.rst @@ -66,13 +66,13 @@ This will start a ``gdb`` server. Then, start ``gdb`` with: .. code-block:: console $ cd nuttx/ - $ gdb-multiarch nuttx/nuttx + $ gdb-multiarch ./nuttx Inside ``gdb`` console, connect to the ``gdb`` server with: .. code-block:: - (gdb) target extended-remote :3333 + (gdb) tar remote :3333 You can now use standard ``gdb`` commands. For example, to reset the board: