mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
15 lines
342 B
CMake
15 lines
342 B
CMake
set(MCU_VARIANT LPC55S69)
|
|
set(MCU_CORE LPC55S69_cm33_core0)
|
|
|
|
set(JLINK_DEVICE LPC55S69)
|
|
set(PYOCD_TARGET LPC55S69)
|
|
set(NXPLINK_DEVICE LPC55S69:LPCXpresso55S69)
|
|
|
|
function(update_board TARGET)
|
|
target_compile_definitions(${TARGET} PUBLIC
|
|
CPU_LPC55S69JBD100_cm33_core0
|
|
# port 1 is highspeed
|
|
# BOARD_TUD_RHPORT=1
|
|
)
|
|
endfunction()
|