Kconfig 516 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. ENV_DIR := /
  8. config SOC_R7FA6M5BH
  9. bool
  10. select SOC_SERIES_R7FA6M5
  11. select RT_USING_COMPONENTS_INIT
  12. select RT_USING_USER_MAIN
  13. default y
  14. source "$(RTT_DIR)/Kconfig"
  15. osource "$PKGS_DIR/Kconfig"
  16. rsource "../libraries/Kconfig"
  17. if !RT_USING_NANO
  18. rsource "$(BSP_DIR)/board/Kconfig"
  19. endif