Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 480 if PKG_USING_LV_MUSIC_DEMO
  33. default 640
  34. config BSP_LCD_HEIGHT
  35. int "Height of LCD panel"
  36. default 272 if PKG_USING_LV_MUSIC_DEMO
  37. default 480
  38. endif
  39. config BSP_DRV_EMAC
  40. bool "Enable EMAC driver"
  41. select RT_USING_LWIP
  42. select RT_USING_SAL
  43. select SAL_USING_POSIX
  44. default n
  45. config BSP_DRV_AUDIO
  46. bool "Audio driver"
  47. select RT_USING_AUDIO
  48. default n
  49. endmenu
  50. endmenu