1mainmenu "RT-Thread Configuration"
2
3BSP_DIR := .
4
5RTT_DIR := ../..
6
7# you can change the RTT_ROOT default "../.." to your rtthread_root,
8# example : default "F:/git_repositories/rt-thread"
9
10PKGS_DIR := packages
11
12ENV_DIR := /
13
14source "$(RTT_DIR)/Kconfig"
15osource "$PKGS_DIR/Kconfig"
16
17config SOC_APOLLO2
18    bool
19    select ARCH_ARM_CORTEX_M4
20    select RT_USING_COMPONENTS_INIT
21    select RT_USING_USER_MAIN
22    default y
23