ESP-IDF Robot

This commit is contained in:
2025-04-20 23:12:16 -04:00
parent a71e38d2b3
commit 6ef196edff
1388 changed files with 181562 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "${config:idf.toolsPath}/tools/riscv32-esp-elf/esp-13.2.0_20230928/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
ESP-IDF_Robot/.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
ESP-IDF_Robot/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPath": "/home/alex/esp/v5.3.2/esp-idf",
"idf.openOcdConfigs": [
"board/esp32c3-builtin.cfg"
],
"idf.toolsPath": "/home/alex/.espressif",
"idf.port": "/dev/ttyACM0",
"idf.flashType": "UART"
}