Kconfig 864 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Copyright (c) 2016 Actions Corporation
  3. #
  4. # SPDX-License-Identifier: Apache-2.0
  5. #
  6. if VG_LITE
  7. choice
  8. prompt "Memory pool"
  9. default VG_LITE_MALLOC_GUI_HEAP
  10. help
  11. Memory pool to use for lvgl allocated objects
  12. config VG_LITE_MALLOC_GUI_HEAP
  13. bool "UI GUI heap"
  14. depends on UI_MEMORY_MANAGER && (UI_GUI_MEM_POOL_SIZE != 0)
  15. help
  16. Use UI Manager GUI heap
  17. config VG_LITE_MALLOC_SYS_HEAP
  18. bool "User space private pool"
  19. help
  20. Use a dedicated memory pool from a private sys heap.
  21. config VG_LITE_MALLOC_LIBC
  22. bool "Use libc allocation"
  23. help
  24. Use libc allocation.
  25. endchoice
  26. if VG_LITE_MALLOC_SYS_HEAP
  27. config VG_LITE_MALLOC_HEAP_SIZE
  28. int "VG-Lite malloc heap size (in bytes)"
  29. default 2048
  30. help
  31. This option specifies the size of the VG-Lite malloc heap.
  32. A size of zero means that no VG-Lite heap is defined.
  33. endif
  34. endif # VG_LITE