Kconfig 550 B

123456789101112131415161718192021222324252627282930
  1. menu "Hardware Drivers Config"
  2. config SOC_XUANTIE
  3. bool
  4. select RT_USING_COMPONENTS_INIT
  5. select RT_USING_USER_MAIN
  6. default y
  7. menu "On-chip Peripheral Drivers"
  8. menuconfig BSP_USING_UART
  9. bool "Enable UART"
  10. select RT_USING_SERIAL
  11. default n
  12. if BSP_USING_UART
  13. config BSP_USING_UART0
  14. bool "Enable UART0"
  15. default n
  16. endif
  17. menuconfig ENABLE_FPU
  18. bool "Enable FPU"
  19. select ARCH_RISCV_FPU
  20. default n
  21. endmenu
  22. endmenu