Remove .vscode dir from repo

This commit is contained in:
Autobox 2024-06-11 16:40:42 +02:00
parent 209d7dbac8
commit 687883c11e
5 changed files with 2 additions and 110 deletions

2
.gitignore vendored
View File

@ -1,5 +1,7 @@
build/
.vscode/
# ---> C
# Prerequisites
*.d

View File

@ -1,20 +0,0 @@
{
"configurations": [
{
"name": "STM32",
"includePath": [
"Core/Inc",
"Drivers/CMSIS/Device/ST/STM32F3xx/Include",
"Drivers/CMSIS/Include",
"Drivers/STM32F3xx_HAL_Driver/Inc",
"Drivers/STM32F3xx_HAL_Driver/Inc/Legacy"
],
"defines": [
"STM32F302xC",
"USE_HAL_DRIVER"
],
"compilerPath": "C:\\USERS\\NIVED\\APPDATA\\ROAMING\\CODE\\USER\\GLOBALSTORAGE\\BMD.STM32-FOR-VSCODE\\@XPACK-DEV-TOOLS\\ARM-NONE-EABI-GCC\\12.3.1-1.2.1\\.CONTENT\\BIN\\ARM-NONE-EABI-GCC.EXE"
}
],
"version": 4
}

32
.vscode/launch.json vendored
View File

@ -1,32 +0,0 @@
{
"configurations": [
{
"showDevDebugOutput": "parsed",
"cwd": "${workspaceRoot}",
"executable": "./build/PDU_FT24_Code.elf",
"name": "Debug STM32",
"request": "launch",
"type": "cortex-debug",
"servertype": "openocd",
"preLaunchTask": "Build STM",
"device": "stm32f302xc.s",
"configFiles": [
"openocd.cfg"
]
},
{
"showDevDebugOutput": "parsed",
"cwd": "${workspaceRoot}",
"executable": "./build/PDU_FT24_Code.elf",
"name": "Attach STM32",
"request": "attach",
"type": "cortex-debug",
"servertype": "openocd",
"preLaunchTask": "Build STM",
"device": "stm32f302xc.s",
"configFiles": [
"openocd.cfg"
]
}
]
}

View File

@ -1,8 +0,0 @@
{
"cortex-debug.armToolchainPath": "c:\\Users\\nived\\AppData\\Roaming\\Code\\User\\globalStorage\\bmd.stm32-for-vscode\\@xpack-dev-tools\\arm-none-eabi-gcc\\12.3.1-1.2.1\\.content\\bin",
"cortex-debug.openocdPath": "C:\\USERS\\NIVED\\APPDATA\\ROAMING\\CODE\\USER\\GLOBALSTORAGE\\BMD.STM32-FOR-VSCODE\\@XPACK-DEV-TOOLS\\OPENOCD\\0.12.0-2.1\\.CONTENT\\BIN\\OPENOCD.EXE",
"files.associations": {
"current_monitoring.h": "c"
},
"cortex-debug.variableUseNaturalFormat": false
}

50
.vscode/tasks.json vendored
View File

@ -1,50 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build STM",
"type": "process",
"command": "${command:stm32-for-vscode.build}",
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "Build Clean STM",
"type": "process",
"command": "${command:stm32-for-vscode.cleanBuild}",
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "Flash STM",
"type": "process",
"command": "${command:stm32-for-vscode.flash}",
"options": {
"cwd": "${workspaceRoot}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}