Kconfig 703 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. mainmenu "RT-Thread Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "../.."
  10. # you can change the RTT_ROOT default "../.." to your rtthread_root,
  11. # example : default "F:/git_repositories/rt-thread"
  12. config PKGS_DIR
  13. string
  14. option env="PKGS_ROOT"
  15. default "packages"
  16. config ENV_DIR
  17. string
  18. option env="ENV_ROOT"
  19. default "/"
  20. source "$RTT_DIR/Kconfig"
  21. source "$PKGS_DIR/Kconfig"
  22. source "$BSP_DIR/drivers/Kconfig"
  23. config SOC_FAMILY_RENESAS
  24. bool
  25. default y
  26. config SOC_SERIES_R7FA6M4AF
  27. bool
  28. select ARCH_ARM_CORTEX_M4
  29. select SOC_FAMILY_RENESAS
  30. default y