From c2465691f3943cb313433f67dc82a8ac4224caa5 Mon Sep 17 00:00:00 2001 From: Andrey Bychkov Date: Sun, 4 Feb 2024 22:05:53 +0300 Subject: [PATCH] fix cmake and vscode project --- .vscode/c_cpp_properties.json | 2 +- CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 140dc88..ac817e5 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -7,7 +7,7 @@ "${env:PICO_SDK_PATH}/**" ], "defines": [], - "compilerPath": "C:\workRaspberry_Pi\Pico_SDK_v1.5.1\gcc-arm-none-eabi\bin\arm-none-eabi-gcc.EXE", + "compilerPath": "C:/workRaspberry_Pi/Pico_SDK_v1.5.1/gcc-arm-none-eabi/bin/arm-none-eabi-gcc.exe", "cStandard": "gnu17", "cppStandard": "gnu++14", "intelliSenseMode": "linux-gcc-arm", diff --git a/CMakeLists.txt b/CMakeLists.txt index d67545e..1b04c2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ set(CMAKE_CXX_STANDARD 17) # Initialise pico_sdk from installed location # (note this can come from environment, CMake cache etc) -set(PICO_SDK_PATH "C:/workRaspberry_Pi/Pico_SDK_v1.5.1/pico-sdk") +#set(PICO_SDK_PATH "C:/workRaspberry_Pi/Pico_SDK_v1.5.1/pico-sdk") set(PICO_BOARD pico CACHE STRING "Board type")