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