Kconfig 629 B

123456789101112131415161718192021222324252627
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. source "$BSP_DIR/../libraries/m031/rtt_port/Kconfig"
  4. endmenu
  5. menu "On-board Peripheral Drivers"
  6. config BSP_USING_NULINKME
  7. bool "Enable UART0 for RTT Console.(uart0)"
  8. select BSP_USING_UART
  9. select BSP_USING_UART0
  10. default y
  11. endmenu
  12. menu "Board extended module drivers"
  13. config BOARD_USING_STORAGE_SPIFLASH
  14. bool "SPIFLASH supporting(over qspi0)"
  15. select BSP_USING_QSPI
  16. select BSP_USING_QSPI0
  17. default n
  18. endmenu
  19. endmenu