summaryrefslogtreecommitdiff
path: root/AGENTS.md
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-04-29 11:56:37 +0700
committerhathach <[email protected]>2026-04-29 12:32:25 +0700
commitf5d6c6ba91e7176ddf5965608c361ccf5d515bde (patch)
tree7253aba789df7c486f8687ca8f9d49ce77096efa /AGENTS.md
parentfd715afcc52b27127de4e7a6a89a7782fdef5676 (diff)
Improve remote execution in `hil_ci.sh`
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/AGENTS.md b/AGENTS.md
index eefe9dde1..5c9908d19 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -103,10 +103,10 @@ openocd -f interface/jlink.cfg -f target/stm32h7x.cfg
openocd -f interface/cmsis-dap.cfg -f target/rp2040.cfg -c "adapter speed 5000"
```
-**Terminal 2 — connect GDB** (JLink :2331, OpenOCD :3333):
+**Terminal 2 — connect GDB** (replace `<port>` with `2331` for JLinkGDBServer or `3333` for OpenOCD):
```bash
arm-none-eabi-gdb /tmp/build/firmware.elf
-(gdb) target remote :2331
+(gdb) target remote :<port>
(gdb) monitor reset halt
(gdb) load
(gdb) break main # optional, to stop at entry