1mainmenu "RT-Thread Configuration"
2
3BSP_DIR := .
4
5RTT_DIR := ../../..
6
7PKGS_DIR := packages
8
9config SOC_STM32L412RB
10    bool
11    select SOC_SERIES_STM32L4
12    select RT_USING_COMPONENTS_INIT
13    select RT_USING_USER_MAIN
14    default y
15
16config BOARD_STM32L412_NUCLEO
17    bool
18    select BOARD_SERIES_STM32_NUCLEO_64
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