Skip to content

Instantly share code, notes, and snippets.

@pashamray
Created August 16, 2018 15:38
Show Gist options
  • Save pashamray/ed7b226fcf0ab51ac86682b9e851de89 to your computer and use it in GitHub Desktop.
Save pashamray/ed7b226fcf0ab51ac86682b9e851de89 to your computer and use it in GitHub Desktop.
VSCode GDB for arm-none-eabi-gdb
{
// Используйте IntelliSense, чтобы узнать о возможных атрибутах.
// Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов.
// Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "GDB",
"type": "gdb",
"request": "launch",
"cwd": "${workspaceRoot}",
"target": "${workspaceRoot}/firmware/output/src/build/invertor_2000.elf",
"gdbpath" : "arm-none-eabi-gdb",
"autorun": [
"target remote localhost:3333",
"symbol-file ./firmware/output/src/build/invertor_2000.elf",
"monitor reset"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment