Kconfig 1.2 KB

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