Kconfig 561 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. config CPK_R7FA2L1AB
  9. bool
  10. default y
  11. config SOC_R7FA2L1AB
  12. bool
  13. select SOC_SERIES_R7FA2L1
  14. select RT_USING_COMPONENTS_INIT
  15. select RT_USING_USER_MAIN
  16. default y
  17. source "$(RTT_DIR)/Kconfig"
  18. osource "$PKGS_DIR/Kconfig"
  19. rsource "../libraries/Kconfig"
  20. if !RT_USING_NANO
  21. rsource "$(BSP_DIR)/board/Kconfig"
  22. endif