Update LVGL to v9.1.0

This commit is contained in:
jacqueline
2024-06-12 17:54:40 +10:00
parent 611176ed66
commit 64bd9053a2
2244 changed files with 278442 additions and 118864 deletions
+1
View File
@@ -0,0 +1 @@
test_file
+3 -2
View File
@@ -1,8 +1,9 @@
LVGL_DIR := $(CURDIR)/../..
LVGL_PATH := $(CURDIR)/../..
$(info LVGL_PATH is set to: $(LVGL_PATH))
include ../../lvgl.mk
CSRCS += test.c
CFLAGS += -DLV_CONF_SKIP=1 -DLV_BUILD_TEST=1 -I$(LVGL_DIR)/..
CFLAGS += -Werror -DLV_CONF_SKIP=1 -DLV_BUILD_TEST=1 -DLV_USE_DEV_VERSION -I$(LVGL_PATH)/..
COBJS := $(patsubst %.c, %.o, $(CSRCS))
test_file: $(COBJS)
+3 -2
View File
@@ -1,8 +1,9 @@
#if LV_BUILD_TEST
#include <stdio.h>
#include "lvgl/lvgl.h"
#include "../../lvgl.h"
int main(void) {
int main(void)
{
lv_init();
return 0;
}