This commit is contained in:
huxi
2025-12-03 11:12:34 +08:00
parent c23ae4f24c
commit bc195654bf
8163 changed files with 3799544 additions and 92 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"configurations": [
{
"cStandard": "c99",
"compilerPath": "C:/JL/pi32/bin/clang.exe",
"cppStandard": "c++11",
"defines": [
"__GCC_Q32S__",
"PMU_SYSTEM",
"CONFIG_FPGA_ENABLE",
"__Q32S__"
],
"includePath": [
"${workspaceFolder}/apps",
"${workspaceFolder}/apps/bsp/cpu/br35/config",
"${workspaceFolder}/include/driver",
"${workspaceFolder}/include/driver/cpu/br35",
"${workspaceFolder}/include/system",
"${workspaceFolder}/include/system/typedef",
"${workspaceFolder}/include/system/cpu/br35",
"${workspaceFolder}/include/utils",
"${workspaceFolder}/apps/sensor",
"${workspaceFolder}/apps/sensor/driver_vc_hr_11",
"C:/JL/pi32/q32s-include"
],
"intelliSenseMode": "clang-x86",
"name": "AC707N_SensorHub"
}
],
"version": 4
}
+28
View File
@@ -0,0 +1,28 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "all",
"type": "shell",
"windows": {
"command": ".vscode/winmk.bat all"
},
"command": "make all -j`nproc`",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
,{
"label": "clean",
"type": "shell",
"windows": {
"command": ".vscode/winmk.bat clean"
},
"command": "make clean -j`nproc`",
"problemMatcher": [],
"group": "build"
}
]
}
+3
View File
@@ -0,0 +1,3 @@
SET SCRIPT_PATH=%~dp0%
SET PATH=%SCRIPT_PATH%\..\tools\utils;%PATH%
make "%1" -j %NUMBER_OF_PROCESSORS%