Browse Source

vscode minor updates

- add cmake language support to recommend extensions
 - jlink debug add stm32f427 svd
 - gitignore updates for vscode
sbg
Daniel Agar 6 years ago
parent
commit
e4967a9502
  1. 5
      .gitignore
  2. 5
      .vscode/extensions.json
  3. 2
      .vscode/launch.json

5
.gitignore vendored

@ -64,3 +64,8 @@ posix-configs/SITL/init/test/*_generated
*.gcov *.gcov
.coverage .coverage
.coverage.* .coverage.*
.vscode/.cortex-debug.peripherals.state.json
.vscode/.cortex-debug.registers.state.json
.vscode/c_cpp_properties.json

5
.vscode/extensions.json vendored

@ -2,11 +2,12 @@
// See http://go.microsoft.com/fwlink/?LinkId=827846 // See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format // for the documentation about the extensions.json format
"recommendations": [ "recommendations": [
"ms-vscode.cpptools",
"github.vscode-pull-request-github",
"chiehyu.vscode-astyle", "chiehyu.vscode-astyle",
"github.vscode-pull-request-github",
"marus25.cortex-debug", "marus25.cortex-debug",
"ms-python.python", "ms-python.python",
"ms-vscode.cpptools",
"twxs.cmake",
"vector-of-bool.cmake-tools" "vector-of-bool.cmake-tools"
] ]
} }

2
.vscode/launch.json vendored

@ -106,7 +106,7 @@
"type": "cortex-debug", "type": "cortex-debug",
"servertype": "jlink", "servertype": "jlink",
"device": "STM32F427VI", "device": "STM32F427VI",
//"svdFile": "", "svdFile": "${workspaceRoot}/../cmsis-svd/data/STMicro/STM32F427.svd",
"interface": "swd", "interface": "swd",
"ipAddress": null, "ipAddress": null,
"serialNumber": null "serialNumber": null

Loading…
Cancel
Save