
4 changed files with 0 additions and 104963 deletions
File diff suppressed because it is too large
@ -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 |
|||
} |
@ -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" |
|||
} |
@ -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…
Reference in new issue