13 lines
312 B
CMake
Raw Normal View History

set(JLINK_DEVICE ATSAMD21G18)
set(LD_FILE_GNU ${CMAKE_CURRENT_LIST_DIR}/${BOARD}.ld)
function(update_board TARGET)
target_compile_definitions(${TARGET} PUBLIC
__SAMD21G18A__
CFG_EXAMPLE_VIDEO_READONLY
)
target_link_options(${TARGET} PUBLIC
--defsym=BOOTLOADER_SIZE=0x800
)
endfunction()