This commit is contained in:
2026-07-30 17:55:00 +08:00
commit 6ffe88dd42
14 changed files with 340 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "/Users/kevin/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/xtensa-esp32-elf-gcc",
"compileCommands": "${config:idf.buildPath}/compile_commands.json",
"intelliSenseMode": "gcc-x86",
"includePath": [
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
}
}
],
"version": 4
}
+10
View File
@@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "gdbtarget",
"request": "attach",
"name": "Eclipse CDT GDB Adapter"
}
]
}
+19
View File
@@ -0,0 +1,19 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.extensionActivationMode": "always",
"idf.openOcdConfigs": [
"board/esp32c3-builtin.cfg"
],
"idf.port": "/dev/tty.usbmodem1201",
"idf.currentSetup": "/Users/kevin/.espressif/v6.0.2/esp-idf",
"idf.customExtraVars": {
"IDF_TARGET": "esp32c3"
},
"clangd.path": "/Users/kevin/.espressif/tools/esp-clang/esp-20.1.1_20250829/esp-clang/bin/clangd",
"clangd.arguments": [
"--background-index",
"--query-driver=**",
"--compile-commands-dir=/Users/kevin/Documents/prj/Moonshine-OS/MSOS_ESP/build"
],
"idf.flashType": "UART"
}