corrected tasks and launchfile for projects folder

This commit is contained in:
Richard Koeppe 2024-06-22 15:35:21 +00:00
parent 64a9c748ef
commit 97fd1b36b7
2 changed files with 3 additions and 3 deletions

4
.vscode/launch.json vendored
View File

@ -6,8 +6,8 @@
"type": "cortex-debug", "type": "cortex-debug",
"request": "launch", "request": "launch",
"servertype": "openocd", "servertype": "openocd",
"cwd": "${workspaceRoot}/${env:PROJECT_NAME_VN200}", "cwd": "${workspaceRoot}/projects/${env:PROJECT_NAME_VN200}",
"executable": "${workspaceRoot}/${env:PROJECT_NAME_VN200}/build/${env:PROJECT_NAME_VN200}.elf", "executable": "${workspaceRoot}/projects/${env:PROJECT_NAME_VN200}/build/${env:PROJECT_NAME_VN200}.elf",
"configFiles": [ "configFiles": [
"/usr/share/openocd/scripts/interface/stlink.cfg", "/usr/share/openocd/scripts/interface/stlink.cfg",
"/home/stm32_devcontainer/.vscode/stm32f3x_custom.cfg" "/home/stm32_devcontainer/.vscode/stm32f3x_custom.cfg"

2
.vscode/tasks.json vendored
View File

@ -4,7 +4,7 @@
{ {
"label": "build_vn200", "label": "build_vn200",
"type": "shell", "type": "shell",
"command": "make -C /home/stm32_devcontainer/${env:PROJECT_NAME_VN200}/build", // or any other build command "command": "make -C /home/stm32_devcontainer/projects/${env:PROJECT_NAME_VN200}/build", // or any other build command
"args": [], "args": [],
"group": { "group": {
"kind": "build", "kind": "build",