Kconfig 554 B

12345678910111213141516171819202122232425262728293031
  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. ENV_DIR := /
  8. source "$(RTT_DIR)/Kconfig"
  9. osource "$PKGS_DIR/Kconfig"
  10. config SOC_AM335X
  11. bool
  12. select RT_USING_CACHE
  13. select RT_USING_COMPONENTS_INIT
  14. select RT_USING_USER_MAIN
  15. default y
  16. config RT_USING_UART0
  17. bool "Using RT_USING_UART0"
  18. default n
  19. config RT_USING_UART1
  20. bool "Using RT_USING_UART1"
  21. default y