Kconfig 877 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Configuration options for Actions OSAL
  2. # Copyright (c) 2020 Actions Technology Co., Ltd
  3. # SPDX-License-Identifier: Apache-2.0
  4. if DISPLAY
  5. menuconfig DISPLAY_COMPOSER
  6. bool "Display Composer"
  7. default y if UI_SERVICE
  8. help
  9. Enable Display composer
  10. if DISPLAY_COMPOSER
  11. config DISPLAY_COMPOSER_DEBUG_FPS
  12. bool "Debug Post Frame Rate (fps) in Display Composer"
  13. default y
  14. help
  15. Debug post frame rate (fps) in Display Composer
  16. config DISPLAY_COMPOSER_DEBUG_VSYNC
  17. bool "Debug VSYNC/TE Signal Period in Display Composer"
  18. default y
  19. help
  20. Debug VSYNC/TE signal period in Display Composer
  21. endif # DISPLAY_COMPOSER
  22. config GUI_API_BROM
  23. bool "GUI ROM API"
  24. help
  25. Enable GUI ROM API
  26. if GUI_API_BROM
  27. config GUI_API_BROM_LARK
  28. bool
  29. default y if SOC_SERIES_LARK
  30. config GUI_API_BROM_LEOPARD
  31. bool
  32. default y if SOC_SERIES_LEOPARD
  33. endif # GUI_API_BROM
  34. endif # DISPLAY