Kconfig 474 B

123456789101112131415161718192021222324252627
  1. mainmenu "RT-Thread Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../..
  4. # you can change the RTT_ROOT default "../.." to your rtthread_root,
  5. # example : default "F:/git_repositories/rt-thread"
  6. PKGS_DIR := packages
  7. source "$(RTT_DIR)/Kconfig"
  8. osource "$PKGS_DIR/Kconfig"
  9. config SOC_CK802
  10. bool
  11. select RT_USING_COMPONENTS_INIT
  12. select RT_USING_USER_MAIN
  13. default y
  14. if RT_USING_SERIAL
  15. config RT_USING_UART1
  16. bool "Using uart1"
  17. default y
  18. endif