123456789101112131415161718192021222324252627 |
- mainmenu "RT-Thread Configuration"
- BSP_DIR := .
- RTT_DIR := ../..
- # you can change the RTT_ROOT default "../.." to your rtthread_root,
- # example : default "F:/git_repositories/rt-thread"
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- config SOC_CK802
- bool
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- default y
- if RT_USING_SERIAL
- config RT_USING_UART1
- bool "Using uart1"
- default y
- endif
|