mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
* Fix unexpected (CMake) behaviour with PICO_BOARD variable. Changing PICO_BOARD value from "pico_w" to "pico" did not unset PICO_CYW43_SUPPORTED variable. Which could lead CYW43 driver included in builds for "pico". solution: make PICO_CYW43_SUPPORTED a non cache variable Co-authored-by: Graham Sanderson <graham.sanderson@raspberrypi.com>
3 lines
138 B
CMake
3 lines
138 B
CMake
set(PICO_CYW43_SUPPORTED "1")
|
|
pico_register_common_scope_var(PICO_CYW43_SUPPORTED)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/generic_board.cmake)
|