From ff3bf49924dd0fafc3e209cf7b3e23f9abf51092 Mon Sep 17 00:00:00 2001 From: unai_71 Date: Sun, 25 Jan 2026 16:45:53 +0000 Subject: [PATCH] Update ESP-IDF and Python paths in VSCode settings for consistency --- .vscode/settings.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6a14ecf..0286268 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,12 +1,12 @@ { "C_Cpp.intelliSenseEngine": "default", - "idf.espIdfPath": "/home/unai/.esp/v5.5.2/esp-idf", - "idf.pythonInstallPath": "/usr/bin/python", + "idf.espIdfPath": "/opt/esp/idf", + "idf.pythonInstallPath": "/usr/bin/python3", "idf.openOcdConfigs": [ "board/esp32c6-builtin.cfg" ], "idf.port": "detect", - "idf.toolsPath": "/home/unai/.espressif", + "idf.toolsPath": "/opt/esp", "idf.customExtraVars": { "IDF_TARGET": "esp32c6" },