
- change tinyusb CMakeLists.txt to function tinyusb_target_add() instead of defining tinyusb lib target
17 lines
362 B
CMake
17 lines
362 B
CMake
set(CMAKE_SYSTEM_CPU cortex-m85 CACHE INTERNAL "System Processor")
|
|
set(MCU_VARIANT ra8m1)
|
|
|
|
set(JLINK_DEVICE R7FA8M1AH)
|
|
#set(JLINK_OPTION "-USB 001083115236")
|
|
|
|
# device default to PORT 1 High Speed
|
|
if (NOT DEFINED RHPORT_DEVICE)
|
|
set(RHPORT_DEVICE 1)
|
|
endif()
|
|
if (NOT DEFINED RHPORT_HOST)
|
|
set(RHPORT_HOST 0)
|
|
endif()
|
|
|
|
function(update_board TARGET)
|
|
endfunction()
|