release-1.0.0 #39
2
.gitignore
vendored
2
.gitignore
vendored
@@ -68,7 +68,7 @@ coverage_report/
|
||||
test_multi_heap_host
|
||||
|
||||
# VS Code Settings
|
||||
.vscode/
|
||||
# .vscode/
|
||||
|
||||
# VIM files
|
||||
*.swp
|
||||
|
||||
23
.vscode/c_cpp_properties.json
vendored
Normal file
23
.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ESP-IDF",
|
||||
"compilerPath": "${config:idf.toolsPath}/tools/riscv32-esp-elf/esp-14.2.0_20241119/riscv32-esp-elf/bin/riscv32-esp-elf-gcc",
|
||||
"compileCommands": "${config:idf.buildPath}/compile_commands.json",
|
||||
"includePath": [
|
||||
"${config:idf.espIdfPath}/components/**",
|
||||
"${config:idf.espIdfPathWin}/components/**",
|
||||
"${workspaceFolder}/**"
|
||||
],
|
||||
"browse": {
|
||||
"path": [
|
||||
"${config:idf.espIdfPath}/components",
|
||||
"${config:idf.espIdfPathWin}/components",
|
||||
"${workspaceFolder}"
|
||||
],
|
||||
"limitSymbolsToIncludedHeaders": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
15
.vscode/launch.json
vendored
Normal file
15
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "gdbtarget",
|
||||
"request": "attach",
|
||||
"name": "Eclipse CDT GDB Adapter"
|
||||
},
|
||||
{
|
||||
"type": "espidf",
|
||||
"name": "Launch",
|
||||
"request": "launch"
|
||||
}
|
||||
]
|
||||
}
|
||||
22
.vscode/settings.json
vendored
22
.vscode/settings.json
vendored
@@ -1,23 +1,3 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"relay_chn.h": "c",
|
||||
"stdlib.h": "c",
|
||||
"cstdint": "c",
|
||||
"relay_chn_run_info.h": "c",
|
||||
"esp_err.h": "c",
|
||||
"relay_chn_output.h": "c",
|
||||
"relay_chn_core.h": "c",
|
||||
"relay_chn_ctl.h": "c",
|
||||
"relay_chn_tilt.h": "c",
|
||||
"relay_chn_defs.h": "c",
|
||||
"esp_check.h": "c",
|
||||
"esp_event_base.h": "c",
|
||||
"esp_event.h": "c",
|
||||
"queue.h": "c",
|
||||
"relay_chn_priv_types.h": "c",
|
||||
"relay_chn_adapter.h": "c",
|
||||
"relay_chn_types.h": "c"
|
||||
},
|
||||
"idf.port": "/dev/ttyUSB0",
|
||||
"idf.pythonInstallPath": "/usr/bin/python"
|
||||
"C_Cpp.intelliSenseEngine": "default"
|
||||
}
|
||||
3
test_apps/.vscode/settings.json
vendored
Normal file
3
test_apps/.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"C_Cpp.intelliSenseEngine": "default"
|
||||
}
|
||||
Reference in New Issue
Block a user