Replies: 4 comments 3 replies
-
Of note, I'm interested with:
|
Beta Was this translation helpful? Give feedback.
-
As well, if I were to setup a simple embedded environment (create a 'hello world' app), how would I do so? |
Beta Was this translation helpful? Give feedback.
-
There's another topic that may be related: supporting the fantastic "record and replay" tool. In replay mode, So in effect, So maybe supporting One limitation I've seen in replay mode, that may also happen when using embedded gdb, is the printing of debug output. With some gdb debug front-end (emacs gdb mode for example), the console output in replay mode is regularly halted (type return to continue). The issue is that this return not only unblock text output, but is also passed to the remote gdb. So after a wall of text, the last command is executed as many times as return was pressed. A gdb front-end smoothly supporting replay mode would be nice. Thanks |
Beta Was this translation helpful? Give feedback.
-
I use the ESP32-WROVER with the ESP-PROG debugger with GDB & openocd. The openocd & gdb are installed as part of the esp-idf build system. ./openocd-esp32/bin/openocd.exe -f board/esp32-wrover-kit-3.3v.cfg $ cat gdbinit $ xtensa-esp32-elf-gdb -x gdbinit myfirmware.elf Then once in gdb, I think most of the commands are standard, however, esp32 (and most MCUs) you need to use HW break points |
Beta Was this translation helpful? Give feedback.
-
I came across an interesting discussion of the gdb debugger and, I assume, specifically using gdb to debug embedded devices.
https://hackaday.com/2022/06/14/linux-fu-up-your-gdb-game/#more-539147
Using Seer (and gdb) to help debug embedded devices is definitely on my radar.
I've created this discussion for people to comment with your ideas, experiences, suggestions, etc. on how you:
As Seer is actively being worked on by me, I am very keen on improving it. Embedded devices is something I don't have a lot of experience so your input is welcomed and appreciated.
Beta Was this translation helpful? Give feedback.
All reactions