Kconfig 533 B

12345678910111213141516171819202122232425262728293031
  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. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. config SOC_STM32G070RB
  15. bool
  16. select SOC_SERIES_STM32G0
  17. select RT_USING_COMPONENTS_INIT
  18. select RT_USING_USER_MAIN
  19. default y
  20. source "$RTT_DIR/Kconfig"
  21. source "$PKGS_DIR/Kconfig"
  22. source "../libraries/Kconfig"
  23. if !RT_USING_NANO
  24. source "board/Kconfig"
  25. endif