Browse Source

remove .vscode - dont like it

main
heck 7 months ago
parent
commit
615e174e1a
  1. 104836
      .vscode/STM32H750x.svd
  2. 40
      .vscode/c_cpp_properties.json
  3. 37
      .vscode/launch.json
  4. 50
      .vscode/tasks.json

104836
.vscode/STM32H750x.svd

File diff suppressed because it is too large

40
.vscode/c_cpp_properties.json

@ -1,40 +0,0 @@
{
"configurations": [
{
"name": "Win32",
// Edit to match your development environment if necessary
"compilerPath": "C:/Program Files/DaisyToolchain/bin/arm-none-eabi-gcc.exe",
"includePath": [
"${workspaceFolder}/Blink/**",
"${workspaceFolder}/libs/libDaisy/**",
"${workspaceFolder}/libs/DaisySP/**"
],
"intelliSenseMode": "gcc-x64",
"cStandard": "c11",
"cppStandard": "c++17",
"defines": [
"DEBUG=1",
"STM32H750xx"
],
"windowsSdkVersion": "10.0.17763.0"
},
{
"name": "Mac",
// Edit to match your development environment if necessary
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
"includePath": [
"${workspaceFolder}/Blink/**",
"${workspaceFolder}/libs/libDaisy/**",
"${workspaceFolder}/libs/DaisySP/**"
],
"intelliSenseMode": "gcc-x64",
"cStandard": "c11",
"cppStandard": "c++17",
"defines": [
"DEBUG=1",
"STM32H750xx"
]
}
],
"version": 4
}

37
.vscode/launch.json

@ -1,37 +0,0 @@
{
"configurations": [
{
"configFiles": [
"interface/stlink.cfg",
"target/stm32h7x.cfg"
],
"cwd": "${workspaceFolder}",
"debuggerArgs": [
"-d",
"${workspaceRoot}"
],
// Here's where you can put the path to the program you want to debug:
"executable": "${workspaceRoot}/Blink/build/Blink.elf",
"interface": "swd",
"name": "Debug Blink",
"openOCDLaunchCommands": [
"init",
"reset init",
"gdb_breakpoint_override hard"
],
"preLaunchTask": "Build",
"preRestartCommands": [
"load",
"enable breakpoint",
"monitor reset"
],
"request": "launch",
"runToMain": true,
"servertype": "openocd",
"showDevDebugOutput": true,
"svdFile": "${workspaceRoot}/.vscode/STM32H750x.svd",
"type": "cortex-debug"
}
],
"version": "0.2.0"
}

50
.vscode/tasks.json

@ -1,50 +0,0 @@
{
"tasks": [
{
"label": "Build Libraries",
"command": "./ci/build_libs.sh",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Build",
"command": "make",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Clean",
"command": "make clean",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Program DFU",
"command": "make program-dfu",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Rebuild and Program DFU",
"command": "make clean; make; make program-dfu",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
}
],
"version": "2.0.0"
}
Loading…
Cancel
Save