Kconfig 470 B

123456789101112131415161718192021222324252627
  1. mainmenu "RT-Thread Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../..
  4. PKGS_DIR := packages
  5. config SOC_STM32G030RB
  6. bool
  7. select SOC_SERIES_STM32G0
  8. select RT_USING_COMPONENTS_INIT
  9. select RT_USING_USER_MAIN
  10. default y
  11. config BOARD_STM32G030_TINY_BOARD
  12. bool
  13. select BOARD_SERIES_STM32_NUCLEO_64
  14. default y
  15. source "$(RTT_DIR)/Kconfig"
  16. osource "$PKGS_DIR/Kconfig"
  17. rsource "../libraries/Kconfig"
  18. if !RT_USING_NANO
  19. rsource "board/Kconfig"
  20. endif