Vincent Hamp

Results 28 comments of Vincent Hamp

I can confirm that changing the request to an "attach" also works for xtensa-esp32s3-elf-gdb.

Well, or not. This is... weird. I'm currently trying to use the built-in USB JTAG thing the new ESP32S3 chips have. This works, but only if I start the OpenOCD...

> In any case - can you please provide the debug console log output from the extension in both cases so we see what is happening on the GDB side?...

> > Someone above mentioned something about a timeout or delay... this smells a lot like a timing issue to me. > > Hm, then I suggest to post the...

I've updated the launch config just as you've described and the behavior is exactly as predicted.

Using the old configuration ```yaml "stopAtEntry": "app_main", "autorun": [ "mon reset halt", "thb app_main", "flushregs" ], ``` this now works yes. The only time I can still trigger the "dropped...

Oops my bad, there is no "built-in" GDB integration. I meant Microsoft's own C/C++ extension which comes with debugging features. Using that one pretty-printing "just works" out of the box....

Sure thing. All the examples below were running with GCC 8.2.1, GDB 8.2 and LLDB 6.0.1 So this is what the variable view should look like when pretty-printing is enabled....

Would it be a troublesome to make pretty printing work in the watch view? This would be a great help for people who do a lot of embedded stuff where...

The Cortex-Debug does this: https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug Otherwise you could create a VSCode task to run the GDB server prior to the debugger? VSCode tasks can be added by using the "preLaunchTask"...