Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. source "$BSP_DIR/../libraries/nuc980/rtt_port/Kconfig"
  4. endmenu
  5. menu "On-board Peripheral Drivers"
  6. config BSP_USING_CONSOLE
  7. bool "Enable UART0 for RTT Console(uart0)"
  8. select BSP_USING_UART
  9. select BSP_USING_UART0
  10. default y
  11. config BOARD_USING_UART8_RS485
  12. bool "Enable UART8 for RS485(AUD) communication(uart8)"
  13. select BSP_USING_UART
  14. select BSP_USING_UART8
  15. default y
  16. config BOARD_USING_STORAGE_SPIFLASH
  17. bool "SPI NOR FLASH supporting(over qspi0)"
  18. select BSP_USING_QSPI
  19. select BSP_USING_QSPI0
  20. default y
  21. config BOARD_USING_USB0_DEVICE_HOST
  22. select BSP_USING_USBH
  23. select BSP_USING_USBD
  24. bool "Enable USB0 Device/Host"
  25. help
  26. Choose this option if you need USB device or host function mode.
  27. If you need USB host, please remember short to ground on JP1 jumper.
  28. endmenu
  29. menu "Board extended module drivers"
  30. config BOARD_USING_IP101GR
  31. bool "Enable ethernet phy supporting(over emac/mdio)"
  32. select BSP_USING_EMAC
  33. select BSP_USING_EMAC1
  34. default n
  35. endmenu
  36. source "$BSP_DIR/../libraries/nu_packages/Kconfig"
  37. endmenu