From 6694d9d019600a49066753800b90945142620a44 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Mon, 11 Oct 2021 04:58:47 -0700 Subject: [PATCH] fix(Kconfig): add LV_MEM_ADDR config (#2653) Signed-off-by: Xiang Xiao --- Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Kconfig b/Kconfig index 7c49517e1..5bf5ec86d 100644 --- a/Kconfig +++ b/Kconfig @@ -71,6 +71,11 @@ menu "LVGL configuration" default 32 depends on !LV_MEM_CUSTOM + config LV_MEM_ADDR + hex "Address for the memory pool instead of allocating it as a normal array" + default 0x0 + depends on !LV_MEM_CUSTOM + config LV_MEM_CUSTOM_INCLUDE string "Header to include for the custom memory function" default "stdlib.h"