1mainmenu "RT-Thread Configuration" 2 3BSP_DIR := . 4 5RTT_DIR := ../../.. 6 7PKGS_DIR := packages 8 9config SOC_STM32U575ZI 10 bool 11 select SOC_SERIES_STM32U5 12 select RT_USING_COMPONENTS_INIT 13 select RT_USING_USER_MAIN 14 default y 15 16config BOARD_STM32U575_NUCLEO 17 bool 18 select BOARD_SERIES_STM32_NUCLEO_144 19 default y 20 21source "$(RTT_DIR)/Kconfig" 22osource "$PKGS_DIR/Kconfig" 23rsource "../libraries/Kconfig" 24 25if !RT_USING_NANO 26rsource "board/Kconfig" 27endif 28