Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. menu "Hardware Drivers Config"
  2. menu "Onboard Peripheral Drivers"
  3. endmenu
  4. menu "On-chip Peripheral Drivers"
  5. menuconfig BSP_USING_UART
  6. bool "Enable UART"
  7. default y
  8. select RT_USING_SERIAL
  9. if BSP_USING_UART
  10. config BSP_USING_UART0
  11. bool "Enable UART0"
  12. default y
  13. endif
  14. menuconfig BSP_USING_SDIO
  15. bool "Enable SDIO"
  16. default y
  17. if BSP_USING_SDIO
  18. config BSP_USING_SD0
  19. bool "Enable SD0 EMMC"
  20. default y
  21. endif
  22. comment "Please set RT_LWIP_PBUF_NUM is at least 256 if Enable Ethernet!"
  23. comment "Please set RT_LWIP_MEM_ALIGNMENT is at 32 if Enable Ethernet!"
  24. menuconfig BSP_USING_ETH
  25. bool "Enable Ethernet"
  26. default n
  27. select RT_USING_NETDEV
  28. select RT_USING_LWIP
  29. if BSP_USING_ETH
  30. config RT_LWIP_PBUF_POOL_BUFSIZE
  31. int "The size of each pbuf in the pbuf pool"
  32. range 1500 2000
  33. default 1700
  34. endif
  35. endmenu
  36. menu "Board extended module Drivers"
  37. endmenu
  38. endmenu