Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. config BSP_USING_ADC
  12. bool "Using ADC"
  13. select RT_USING_ADC
  14. default n
  15. menu "UART Drivers"
  16. config BSP_USING_UART0
  17. bool "Enable UART0 P0.2/P0.3(T/R)"
  18. select RT_USING_SERIAL
  19. default y
  20. config BSP_USING_UART2
  21. bool "Enable UART2 P2.8/P0.11(T/R)"
  22. select RT_USING_SERIAL
  23. default n
  24. endmenu
  25. endmenu
  26. menu "Onboard Peripheral Drivers"
  27. config BSP_USING_SDRAM
  28. bool "Enable sdram"
  29. default n
  30. config BSP_USING_LED
  31. bool "Enable LED"
  32. default n
  33. endmenu
  34. menu "Offboard Peripheral Drivers"
  35. endmenu
  36. endmenu