init commit
This commit is contained in:
1
firmware/NUCLEO_F303RE/.vscode/.cortex-debug.peripherals.state.json
vendored
Normal file
1
firmware/NUCLEO_F303RE/.vscode/.cortex-debug.peripherals.state.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[{"node":"DMA1","expanded":true,"format":0,"pinned":false},{"node":"DMA1.ISR","expanded":true,"format":0},{"node":"DMA1.IFCR","expanded":true,"format":0},{"node":"TIM6","expanded":true,"format":0,"pinned":false},{"node":"TIM6.CNT","expanded":true,"format":0},{"node":"TIM6.PSC","expanded":true,"format":0},{"node":"TIM6.ARR","expanded":true,"format":0}]
|
||||
1
firmware/NUCLEO_F303RE/.vscode/.cortex-debug.registers.state.json
vendored
Normal file
1
firmware/NUCLEO_F303RE/.vscode/.cortex-debug.registers.state.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
25
firmware/NUCLEO_F303RE/.vscode/c_cpp_properties.json
vendored
Normal file
25
firmware/NUCLEO_F303RE/.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Win32",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/Core/Inc/**",
|
||||
"${workspaceFolder}/Drivers/STM32F3xx_HAL_Driver/Inc/**",
|
||||
"${workspaceFolder}/Drivers/CMSIS/**"
|
||||
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"UNICODE",
|
||||
"_UNICODE",
|
||||
"USE_HAL_DRIVERS",
|
||||
"STM32F303xE"
|
||||
],
|
||||
"compilerPath": "C:/MyApps/arm-gcc/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe",
|
||||
"cStandard": "c11",
|
||||
"cppStandard": "gnu++17",
|
||||
"intelliSenseMode": "windows-gcc-arm"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
33
firmware/NUCLEO_F303RE/.vscode/launch.json
vendored
Normal file
33
firmware/NUCLEO_F303RE/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Cortex Debug",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"executable": "./build/${workspaceFolderBasename}.elf",
|
||||
"request": "launch",
|
||||
"type": "cortex-debug",
|
||||
"runToEntryPoint": "main",
|
||||
"servertype": "jlink",
|
||||
"device": "STM32F303RE",
|
||||
"interface": "swd",
|
||||
"runToMain": true,
|
||||
"svdFile": "STM32F303xE.svd",
|
||||
// "swoConfig": {
|
||||
// "enabled": false,
|
||||
// "cpuFrequency": 8000000,
|
||||
// "swoFrequency": 2000000,
|
||||
// "source": "probe",
|
||||
// "decoders": [{
|
||||
// "type": "console",
|
||||
// "label": "ITM",
|
||||
// "port": 0
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
}
|
||||
]
|
||||
}
|
||||
22
firmware/NUCLEO_F303RE/.vscode/tasks.json
vendored
Normal file
22
firmware/NUCLEO_F303RE/.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "build",
|
||||
"command": "C:/MyApps/mingw64/bin/make.exe",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
"args": [
|
||||
"-j"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user