Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/rp2_common/pico_cyw43_driver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,16 @@ if (EXISTS ${PICO_CYW43_DRIVER_PATH}/${CYW43_DRIVER_TEST_FILE})
# NO_EMBEDDED_PT argument (for example, if you need to chain into the binary, it
# can't contain a partition table).
#
# This will create a separate UF2 file for the firmware and a separate UF2 file for a
# TBYB version of the firmware. You will need to flash one of these to each device once,
# after loading the partition table. For example using picotool:
#
# `picotool load TARGET.uf2`;
# `picotool reboot -u`;
# `picotool load TARGET_firmware.uf2 -x`;
#
# Then on subsequent updates, you can just flash the TARGET.uf2 file to the device.
#
# \param\ NO_EMBEDDED_PT If set, will not embed a partition table in the binary
function(pico_use_wifi_firmware_partition TARGET)
set(options NO_EMBEDDED_PT)
Expand Down
Loading