Files
tinyUSB/hw/bsp/stm32n6/boards/stm32n657nucleo/board.cmake
hathach 76b7468c74 ci skip clang/iar build for stm32n6
add stm32-tcpp0203 driver as dependency for h7rs and n6
2025-06-12 15:32:36 +07:00

18 lines
418 B
CMake

set(MCU_VARIANT stm32n657xx)
set(JLINK_DEVICE stm32n6xx)
set(LD_FILE_GNU ${CMAKE_CURRENT_LIST_DIR}/STM32N657XX_AXISRAM2_fsbl.ld)
function(update_board TARGET)
target_compile_definitions(${TARGET} PUBLIC
STM32N657xx
)
target_sources(${TARGET} PUBLIC
${ST_TCPP0203}/tcpp0203.c
${ST_TCPP0203}/tcpp0203_reg.c
)
target_include_directories(${TARGET} PUBLIC
${ST_TCPP0203}
)
endfunction()