ButtonLED Dev

This commit is contained in:
2025-01-30 16:46:21 -08:00
parent cc7b79b9e6
commit 1739499817
1391 changed files with 145106 additions and 0 deletions

23
ButtonLED/.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,23 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "${config:idf.toolsPathWin}\\tools\\riscv32-esp-elf\\esp-14.2.0_20241119\\riscv32-esp-elf\\bin\\riscv32-esp-elf-gcc.exe",
"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
ButtonLED/.vscode/launch.json vendored Normal file
View 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"
}
]
}

10
ButtonLED/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPathWin": "C:\\Users\\famil\\esp\\v5.4\\esp-idf",
"idf.openOcdConfigs": [
"board/esp32c6-builtin.cfg"
],
"idf.portWin": "COM9",
"idf.toolsPathWin": "C:\\Users\\famil\\.espressif",
"idf.flashType": "UART"
}