Kconfig 989 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. menu "Hardware Drivers Config"
  2. menu "On-chip Peripheral Drivers"
  3. config BSP_USING_EMAC
  4. bool "EMAC driver"
  5. select RT_USING_LWIP
  6. default n
  7. config BSP_USING_HWTIMER0
  8. bool "Using timer0"
  9. select RT_USING_HWTIMER
  10. default n
  11. menu "UART Drivers"
  12. config BSP_USING_UART0
  13. bool "Enable UART0 P0.2/P0.3(T/R)"
  14. select RT_USING_SERIAL
  15. default y
  16. config BSP_USING_UART2
  17. bool "Enable UART2 P2.8/P0.11(T/R)"
  18. select RT_USING_SERIAL
  19. default n
  20. endmenu
  21. endmenu
  22. menu "Onboard Peripheral Drivers"
  23. config BSP_USING_SDRAM
  24. bool "Enable sdram"
  25. default n
  26. config BSP_USING_LED
  27. bool "Enable LED"
  28. default n
  29. endmenu
  30. menu "Offboard Peripheral Drivers"
  31. endmenu
  32. endmenu