Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. menu "Hardware Drivers Config"
  2. config SOC_VEXPRESS_A9
  3. bool
  4. select ARCH_ARM_CORTEX_A9
  5. select RT_USING_COMPONENTS_INIT
  6. select RT_USING_USER_MAIN
  7. select RT_USING_GIC_V2
  8. default y
  9. menu "Onboard Peripheral Drivers"
  10. config RT_USING_UART0
  11. bool "Enable UART0"
  12. default y
  13. config RT_USING_UART1
  14. bool "Enable UART1"
  15. default y
  16. config BSP_USING_LVGL
  17. bool "Enable LVGL for LCD"
  18. select PKG_USING_LVGL
  19. select PKG_USING_LV_MUSIC_DEMO
  20. select BSP_DRV_CLCD
  21. select BSP_DRV_MOUSE
  22. default n
  23. config BSP_DRV_CLCD
  24. bool "CLCD driver"
  25. default n
  26. config BSP_DRV_MOUSE
  27. bool "MOUSE driver"
  28. default n
  29. if BSP_DRV_CLCD
  30. config BSP_LCD_WIDTH
  31. int "Width of LCD panel"
  32. default 640
  33. config BSP_LCD_HEIGHT
  34. int "Height of LCD panel"
  35. default 480
  36. endif
  37. config BSP_DRV_EMAC
  38. bool "Enable EMAC driver"
  39. select RT_USING_LWIP
  40. select RT_USING_SAL
  41. select SAL_USING_POSIX
  42. default n
  43. config BSP_DRV_AUDIO
  44. bool "Audio driver"
  45. select RT_USING_AUDIO
  46. default n
  47. endmenu
  48. endmenu