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 918408a commit 0fa63ddCopy full SHA for 0fa63dd
src/rp2_common/pico_cyw43_driver/CMakeLists.txt
@@ -175,7 +175,10 @@ if (EXISTS ${PICO_CYW43_DRIVER_PATH}/${CYW43_DRIVER_TEST_FILE})
175
message(FATAL_ERROR "RP2040 does not support storing wi-fi firmware in partitions")
176
endif()
177
target_compile_definitions(${TARGET} PRIVATE CYW43_USE_FIRMWARE_PARTITION=1)
178
- pico_embed_pt_in_binary(${TARGET} ${PICO_CYW43_DRIVER_CURRENT_PATH}/wifi_pt.json)
+ get_target_property(picotool_embed_pt ${TARGET} PICOTOOL_EMBED_PT)
179
+ if (NOT picotool_embed_pt)
180
+ pico_embed_pt_in_binary(${TARGET} ${PICO_CYW43_DRIVER_CURRENT_PATH}/wifi_pt.json)
181
+ endif()
182
183
find_package (Python3 REQUIRED COMPONENTS Interpreter)
184
0 commit comments