mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
22 lines
590 B
CMake
22 lines
590 B
CMake
set(MCU_VARIANT MCXN947)
|
|
set(MCU_CORE MCXN947_cm33_core0)
|
|
|
|
set(JLINK_DEVICE MCXN947_M33_0)
|
|
set(PYOCD_TARGET MCXN947)
|
|
set(NXPLINK_DEVICE MCXN947:MCXN947)
|
|
|
|
set(PORT 1)
|
|
|
|
function(update_board TARGET)
|
|
target_compile_definitions(${TARGET} PUBLIC
|
|
CPU_MCXN947VDF_cm33_core0
|
|
BOARD_TUD_RHPORT=${PORT}
|
|
# port 0 is fullspeed, port 1 is highspeed
|
|
BOARD_TUD_MAX_SPEED=$<IF:${PORT},OPT_MODE_HIGH_SPEED,OPT_MODE_FULL_SPEED>
|
|
)
|
|
target_sources(${TARGET} PUBLIC
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/clock_config.c
|
|
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/pin_mux.c
|
|
)
|
|
endfunction()
|