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
12source "$(RTT_DIR)/Kconfig"
13osource "$PKGS_DIR/Kconfig"
14
15config SOC_THEAD_SMART
16    bool
17    select RT_USING_COMPONENTS_INIT
18    select RT_USING_USER_MAIN
19    select ARCH_RISCV32
20    select ARCH_RISCV_FPU_S
21    default y
22
23if RT_USING_SERIAL
24
25    config RT_USING_UART1
26        bool "Using uart1"
27        default y
28
29endif
30