Created
August 16, 2018 15:38
-
-
Save pashamray/ed7b226fcf0ab51ac86682b9e851de89 to your computer and use it in GitHub Desktop.
VSCode GDB for arm-none-eabi-gdb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Используйте 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