nuttx-apps/graphics/lvgl
yinshengkai 2c3c2edcb7 Makefile: Remove INCDIROPT
This option, which resolves to -w when CONFIG_CYGWIN_WINTOOL is
configured, is now appended to INCDIR in tools/Config.mk.

See git commit # 5eae32577e5d5226e5d3027c169eeb369f83f77d in the main
2022-10-25 13:48:16 +08:00
..
.gitignore graphics/lvgl: Bump lvgl version to 7.0.2 2020-06-17 12:13:36 -03:00
Kconfig graphics/lvgl: Add config to enable LVGL Performance Monitor 2021-04-08 07:59:23 -03:00
lv_conf.h apps: graphics: lvgl: update licenses to Apache 2022-03-11 00:14:32 +02:00
lv_fs_interface.c graphics: fix relative path CI error 2021-06-16 09:03:06 -05:00
lv_fs_interface.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
lv_tick_interface.c graphics: fix relative path CI error 2021-06-16 09:03:06 -05:00
lv_tick_interface.h include: fix double include pre-processor guards 2022-01-16 17:36:21 +08:00
Make.defs Makefile: Remove INCDIROPT 2022-10-25 13:48:16 +08:00
Makefile Don't download tarballs if a local git repo found 2022-08-28 17:20:47 +08:00
README.md Rewritten READMEs to Markdown 2020-07-25 01:01:51 -07:00

Graphics / lvgl LVGL

Usage

Import with #include <lvgl/lvgl.h> or #include <lvgl.h>.

Upstream example ported to NuttX is present at examples/lvgldemo.

LVGL can be used with framebuffer device. To find example boards with this preconfigured, search for CONFIG_GRAPHICS_LVGL=y in defconfig files. All of them have also CONFIG_VIDEO_FB=y present.

As a second option, LVGL can talk to a display driver and explicitly draw line by line. For this case, there is no preconfigured board present. Go to Porting section of upstream documentation for more hints.

Resources