Skip to content

ports/rp2: Fix flash size check in CMakeLists.txt. #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion ports/rp2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ target_link_options(${MICROPY_TARGET} PRIVATE
-Wl,--wrap=runtime_init_clocks
)

if(PICO_FLASH_SIZE_BYTES GREATER 0)
if(DEFINED PICO_FLASH_SIZE_BYTES)
target_link_options(${MICROPY_TARGET} PRIVATE
-Wl,--defsym=__micropy_flash_size__=${PICO_FLASH_SIZE_BYTES}
)
Expand Down
Loading