From 7da1fbcd49e1e84b24fcce6da45b37ebeffa8a34 Mon Sep 17 00:00:00 2001 From: Armando Montanez Date: Tue, 12 Nov 2024 14:28:38 -0800 Subject: [PATCH] Fix mislabeled PICO_CMAKE_CONFIG annotation Fixes the CYW43_DEFAULT_PIN_WL_CLOCK configuration option's documentation annotation to use the correct name. --- src/rp2_common/pico_cyw43_driver/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2_common/pico_cyw43_driver/CMakeLists.txt b/src/rp2_common/pico_cyw43_driver/CMakeLists.txt index cfc6ba1f3..8002e8839 100644 --- a/src/rp2_common/pico_cyw43_driver/CMakeLists.txt +++ b/src/rp2_common/pico_cyw43_driver/CMakeLists.txt @@ -73,7 +73,7 @@ if (EXISTS ${PICO_CYW43_DRIVER_PATH}/${CYW43_DRIVER_TEST_FILE}) target_compile_definitions(cyw43_driver_picow INTERFACE CYW43_DEFAULT_PIN_WL_HOST_WAKE=${CYW43_DEFAULT_PIN_WL_HOST_WAKE}) endif() if (CYW43_DEFAULT_PIN_WL_CLOCK) - # PICO_CMAKE_CONFIG: CYW43_DEFAULT_PIN_WL_HOST_WAKE, gpio pin for the spi clock line to the cyw43 chip, type=int, default=29, group=pico_cyw43_driver + # PICO_CMAKE_CONFIG: CYW43_DEFAULT_PIN_WL_CLOCK, gpio pin for the spi clock line to the cyw43 chip, type=int, default=29, group=pico_cyw43_driver target_compile_definitions(cyw43_driver_picow INTERFACE CYW43_DEFAULT_PIN_WL_CLOCK=${CYW43_DEFAULT_PIN_WL_CLOCK}) endif() if (CYW43_DEFAULT_PIN_WL_CS)