From 41bc4881749b86f5cf5b7da5931532031afb8861 Mon Sep 17 00:00:00 2001 From: Samuel Date: Sat, 31 Jan 2026 19:25:07 +0100 Subject: [PATCH] Plus d'erreur avec VScode pour les include lwip et cyw43_arch --- .vscode/c_cpp_properties.json | 4 +++- .vscode/settings.json | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index e9180b9..e3158bf 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -4,7 +4,9 @@ "${workspaceFolder}", "${workspaceFolder}/build", "${workspaceFolder}/build/generated/pico_base", - "${env:PICO_SDK_PATH}/src/**/include" + "${env:PICO_SDK_PATH}/src/**/include", + "${env:PICO_SDK_PATH}/lib/cyw43-driver/src", + "${env:PICO_SDK_PATH}/lib/**/include" ], "myCompilerPath": "/usr/bin/arm-none-eabi-gcc" diff --git a/.vscode/settings.json b/.vscode/settings.json index 0f06797..991bbf8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,8 @@ { "files.associations": { - "stdio.h": "c" + "stdio.h": "c", + "cyw43_arch.h": "c", + "async_context.h": "c", + "cyw43.h": "c" } } \ No newline at end of file