update VS Code settings

This commit is contained in:
Samuel Sadok
2017-11-06 18:34:15 +01:00
parent 8523c40832
commit 734b8a2913
2 changed files with 10 additions and 3 deletions
+7 -3
View File
@@ -5,12 +5,16 @@
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"name": "Debug Python Utility",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config:python.pythonPath}",
"program": "${workspaceRoot}/tools/demo.py",
"program": "${workspaceRoot}/tools/test_communication.py",
"args": [
// add specific arguments that you might wanna test
//"--serial", "/dev/ttyUSB0"
],
"cwd": "${workspaceRoot}",
"env": {},
"envFile": "${workspaceRoot}/.env",
@@ -23,7 +27,7 @@
{
"type": "gdb",
"request": "attach",
"name": "Launch Program",
"name": "Debug Firmware",
"target": "localhost:3333",
"gdbpath": "arm-none-eabi-gdb",
"remote": true,
+3
View File
@@ -1,5 +1,8 @@
{
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0 }",
"files.exclude": {
"Firmware/build": true
},
"files.associations": {
"memory": "cpp",
"utility": "cpp",