You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
I have an ATMEL ICE that I wired up to an ATMEGA328P. I can debug my microcontroller using AVR-GDB and either
avariceorBloomas the GDB server.When I try to set up a remote connection from CodeLLDB to my GDB server, it connects, but there are several issues:
SIGTRAPloop (this was solved by uncheckingC++: on throwbreakpointsSome commands, like
disassemblecomplain about a stopped process.My config is basically the example from the manual, with the paths changed:
{ "name": "Remote attach", "type": "lldb", "request": "attach", "targetCreateCommands": ["target create ${workspaceFolder}/build/debuggee"], "processCreateCommands": ["gdb-remote <remote_host>:<port>"] }All reactions