forked from Archive/PX4-Autopilot
vscode minor updates
- add cmake language support to recommend extensions - jlink debug add stm32f427 svd - gitignore updates for vscode
This commit is contained in:
parent
164fe00df7
commit
e4967a9502
|
@ -64,3 +64,8 @@ posix-configs/SITL/init/test/*_generated
|
|||
*.gcov
|
||||
.coverage
|
||||
.coverage.*
|
||||
|
||||
.vscode/.cortex-debug.peripherals.state.json
|
||||
.vscode/.cortex-debug.registers.state.json
|
||||
.vscode/c_cpp_properties.json
|
||||
|
||||
|
|
|
@ -2,11 +2,12 @@
|
|||
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
||||
// for the documentation about the extensions.json format
|
||||
"recommendations": [
|
||||
"ms-vscode.cpptools",
|
||||
"github.vscode-pull-request-github",
|
||||
"chiehyu.vscode-astyle",
|
||||
"github.vscode-pull-request-github",
|
||||
"marus25.cortex-debug",
|
||||
"ms-python.python",
|
||||
"ms-vscode.cpptools",
|
||||
"twxs.cmake",
|
||||
"vector-of-bool.cmake-tools"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
"type": "cortex-debug",
|
||||
"servertype": "jlink",
|
||||
"device": "STM32F427VI",
|
||||
//"svdFile": "",
|
||||
"svdFile": "${workspaceRoot}/../cmsis-svd/data/STMicro/STM32F427.svd",
|
||||
"interface": "swd",
|
||||
"ipAddress": null,
|
||||
"serialNumber": null
|
||||
|
|
Loading…
Reference in New Issue