mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-24 05:42:57 +08:00
16 lines
371 B
CMake
16 lines
371 B
CMake
set(MCU_VARIANT stm32h750xx)
|
|
set(JLINK_DEVICE stm32h750ibk6_m7)
|
|
|
|
set(LD_FILE_GNU ${CMAKE_CURRENT_LIST_DIR}/stm32h750ibkx_flash.ld)
|
|
|
|
function(update_board TARGET)
|
|
target_compile_definitions(${TARGET} PUBLIC
|
|
STM32H750xx
|
|
HSE_VALUE=16000000
|
|
CORE_CM7
|
|
# default to PORT 0
|
|
BOARD_TUD_RHPORT=0
|
|
BOARD_TUD_MAX_SPEED=OPT_MODE_FULL_SPEED
|
|
)
|
|
endfunction()
|