ESP32-Console

This commit is contained in:
2025-01-09 17:17:47 -05:00
parent 976227c5a4
commit 6949af225c
9 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "${config:idf.toolsPath}/tools/xtensa-esp-elf/esp-13.2.0_20240530/xtensa-esp-elf/bin/xtensa-esp32-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
ESP32-Console/.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"
}
]
}

9
ESP32-Console/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPath": "/home/abobkov/esp/v5.3.2/esp-idf",
"idf.openOcdConfigs": [
"board/esp32c3-ftdi.cfg"
],
"idf.port": "/dev/ttyS4",
"idf.toolsPath": "/home/abobkov/.espressif"
}