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_CK802 16 bool 17 select RT_USING_COMPONENTS_INIT 18 select RT_USING_USER_MAIN 19 default y 20 21if RT_USING_SERIAL 22 23 config RT_USING_UART1 24 bool "Using uart1" 25 default y 26 27endif 28