Kconfig 553 B

1234567891011121314151617181920212223242526272829303132
  1. config RT_USING_UART0
  2. bool "Enable UART0"
  3. default n
  4. config RT_USING_UART1
  5. bool "Enable UART1"
  6. default y
  7. config BSP_DRV_CLCD
  8. bool "CLCD driver"
  9. depends on PKG_USING_GUIENGINE
  10. default y
  11. if BSP_DRV_CLCD
  12. config BSP_LCD_WIDTH
  13. int "Width of LCD panel"
  14. default 640
  15. config BSP_LCD_HEIGHT
  16. int "Height of LCD panel"
  17. default 480
  18. endif
  19. config BSP_DRV_EMAC
  20. bool "EMAC driver"
  21. depends on RT_USING_LWIP
  22. default y
  23. config BSP_DRV_AUDIO
  24. bool "Audio driver"
  25. select RT_USING_AUDIO
  26. default n