mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
13 lines
323 B
CMake
13 lines
323 B
CMake
set(MCU_VARIANT nrf5340_application)
|
|
set(LD_FILE_gcc ${NRFX_DIR}/mdk/nrf5340_xxaa_application.ld)
|
|
|
|
function(update_board TARGET)
|
|
target_compile_definitions(${TARGET} PUBLIC
|
|
NRF5340_XXAA
|
|
NRF5340_XXAA_APPLICATION
|
|
)
|
|
target_sources(${TARGET} PUBLIC
|
|
${NRFX_DIR}/drivers/src/nrfx_usbreg.c
|
|
)
|
|
endfunction()
|