Files
tinyusb/.vscode/launch.json
T
Gordon McNab fa06bd01c9 Merge in upstream changes
Merge upstream changes and expand example support to hid examples.
2021-12-08 10:05:32 +00:00

33 lines
1.5 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug TinyUSB CDC_MSC",
"type": "cppdbg",
"MIMode": "gdb",
"request": "launch",
"cwd": "${workspaceFolder}",
"program": "examples/device/program.elf",
//"program": "examples/device/cdc_msc/_build/mm900ev1b/cdc_msc.elf",
"preLaunchTask": "Build and Program (Memory)",
"target": "localhost:9998",
"remote": true,
"gdbpath": "C:/Program Files (x86)/Bridgetek/FT9xx Toolchain/Toolchain/tools/bin/ft32-elf-gdb.exe",
"stopAtEntry": true,
"environment": [],
"console": "externalTerminal",
"miDebuggerPath": "C:/Program Files (x86)/Bridgetek/FT9xx Toolchain/Toolchain/tools/bin/ft32-elf-gdb.exe",
//"miDebuggerArgs": "-x lib\\FreeRTOS\\.gdbinit-FreeRTOS-helpers",
"miDebuggerServerAddress": "localhost:9998",
"launchCompleteCommand": "None",
"debugServerPath": "C:\\Users\\gordon.mcnab\\AppData\\Local\\Programs\\Python\\Python37\\python.exe",
"debugServerArgs":
"\"C:/Program Files (x86)/Bridgetek/FT9xx Toolchain/Toolchain/utilities/gdb_bridge.py\" live pm",
//"rtos": "FreeRTOS",
}
]
}