debugging config

This commit is contained in:
Matthew Kennedy 2020-11-11 16:30:31 -08:00
parent 22916eef37
commit 1febbe0266
6 changed files with 52 additions and 0 deletions

3
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "firmware/ChibiOS"]
path = firmware/ChibiOS
url = https://github.com/ChibiOS/ChibiOS
[submodule "firmware/cmsis-svd"]
path = firmware/cmsis-svd
url = https://github.com/posborne/cmsis-svd

7
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"recommendations": [
"marus25.cortex-debug",
"Gruntfuggly.todo-tree",
"ms-vscode.cpptools"
]
}

18
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug F042",
"type": "cortex-debug",
"request": "launch",
"cwd": "${workspaceFolder}",
"executable": "${workspaceRoot}/firmware/build/wideband.elf",
"device": "STM32F042K6",
"v1": false,
"svdFile": "${workspaceRoot}/firmware/cmsis-svd/data/STMicro/STM32F042x.svd",
"servertype": "openocd",
"configFiles": ["interface/stlink.cfg", "target/stm32f0x.cfg"],
"runToMain": true
}
]
}

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"cortex-debug.armToolchainPath": ""
}

20
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make",
"type": "shell",
"command": "make -j8",
"options": {
"cwd": "${workspaceRoot}/firmware"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

1
firmware/cmsis-svd Submodule

@ -0,0 +1 @@
Subproject commit e5db2387d9c48359c9c5229a5bb436cf2ed5381f