We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed86a6 commit f4664deCopy full SHA for f4664de
src/rp2_common/pico_cyw43_driver/CMakeLists.txt
@@ -168,7 +168,10 @@ if (EXISTS ${PICO_CYW43_DRIVER_PATH}/${CYW43_DRIVER_TEST_FILE})
168
message(FATAL_ERROR "RP2040 does not support storing wi-fi firmware in partitions")
169
endif()
170
target_compile_definitions(${TARGET} PRIVATE CYW43_USE_FIRMWARE_PARTITION=1)
171
- pico_embed_pt_in_binary(${TARGET} ${PICO_CYW43_DRIVER_CURRENT_PATH}/wifi_pt.json)
+ get_target_property(picotool_embed_pt ${TARGET} PICOTOOL_EMBED_PT)
172
+ if (NOT picotool_embed_pt)
173
+ pico_embed_pt_in_binary(${TARGET} ${PICO_CYW43_DRIVER_CURRENT_PATH}/wifi_pt.json)
174
+ endif()
175
176
find_package (Python3 REQUIRED COMPONENTS Interpreter)
177
0 commit comments