├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── components ├── lv_examples │ ├── CMakeLists.txt │ ├── Kconfig │ ├── component.mk │ └── lv_demo_conf.h └── lvgl_esp32_drivers │ ├── .editorconfig │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTE_CONTROLLER_SUPPORT.md │ ├── Kconfig │ ├── LICENSE │ ├── README.md │ ├── component.mk │ ├── lvgl_helpers.c │ ├── lvgl_helpers.h │ ├── lvgl_i2c │ ├── Kconfig │ ├── README.md │ ├── i2c_manager.c │ └── i2c_manager.h │ ├── lvgl_spi_conf.h │ ├── lvgl_tft │ ├── EVE.h │ ├── EVE_commands.c │ ├── EVE_commands.h │ ├── EVE_config.h │ ├── FT81x.c │ ├── FT81x.h │ ├── GC9A01.c │ ├── GC9A01.h │ ├── Kconfig │ ├── disp_driver.c │ ├── disp_driver.h │ ├── disp_spi.c │ ├── disp_spi.h │ ├── esp_lcd_backlight.c │ ├── esp_lcd_backlight.h │ ├── hx8357.c │ ├── hx8357.h │ ├── il3820.c │ ├── il3820.h │ ├── ili9163c.c │ ├── ili9163c.h │ ├── ili9341.c │ ├── ili9341.h │ ├── ili9481.c │ ├── ili9481.h │ ├── ili9486.c │ ├── ili9486.h │ ├── ili9488.c │ ├── ili9488.h │ ├── jd79653a.c │ ├── jd79653a.h │ ├── ra8875.c │ ├── ra8875.h │ ├── sh1107.c │ ├── sh1107.h │ ├── ssd1306.c │ ├── ssd1306.h │ ├── st7735s.c │ ├── st7735s.h │ ├── st7789.c │ ├── st7789.h │ ├── st7796s.c │ ├── st7796s.h │ ├── uc8151d.c │ └── uc8151d.h │ └── lvgl_touch │ ├── FT81x.c │ ├── FT81x.h │ ├── Kconfig │ ├── adcraw.c │ ├── adcraw.h │ ├── ft6x36.c │ ├── ft6x36.h │ ├── gt911.c │ ├── gt911.h │ ├── ra8875_touch.c │ ├── ra8875_touch.h │ ├── stmpe610.c │ ├── stmpe610.h │ ├── touch_driver.c │ ├── touch_driver.h │ ├── tp_spi.c │ ├── tp_spi.h │ ├── xpt2046.c │ └── xpt2046.h ├── lv_sim_visual_studio ├── .editorconfig ├── .gitignore ├── .gitmodules ├── BuildAllTargets.cmd ├── BuildAllTargets.proj ├── Directory.Build.props ├── LICENSE ├── LVGL.Simulator.sln ├── LVGL.Simulator │ ├── LVGL.Core.vcxitems │ ├── LVGL.Core.vcxitems.filters │ ├── LVGL.Demonstrations.vcxitems │ ├── LVGL.Demonstrations.vcxitems.filters │ ├── LVGL.Drivers.vcxitems │ ├── LVGL.Drivers.vcxitems.filters │ ├── LVGL.Simulator.cpp │ ├── LVGL.Simulator.manifest │ ├── LVGL.Simulator.rc │ ├── LVGL.Simulator.vcxproj │ ├── LVGL.Simulator.vcxproj.filters │ ├── LVGL.ico │ ├── Mile.Project.Properties.h │ ├── Mile.Project │ │ ├── Mile.Project.Library.CppWinRT.props │ │ ├── Mile.Project.Manifest.rc │ │ ├── Mile.Project.Runtime.VC-LTL.props │ │ ├── Mile.Project.Version.h │ │ ├── Mile.Project.Version.rc │ │ ├── Mile.Project.props │ │ └── Mile.Project.targets │ ├── freetype.props │ ├── freetype │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── .gitlab-ci.yml │ │ ├── .gitmodules │ │ ├── .mailmap │ │ ├── CMakeLists.txt │ │ ├── LICENSE.TXT │ │ ├── Makefile │ │ ├── README │ │ ├── README.git │ │ ├── autogen.sh │ │ ├── builds │ │ │ ├── amiga │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ └── ftmodule.h │ │ │ │ ├── makefile │ │ │ │ ├── makefile.os4 │ │ │ │ ├── smakefile │ │ │ │ └── src │ │ │ │ │ └── base │ │ │ │ │ ├── ftdebug.c │ │ │ │ │ └── ftsystem.c │ │ │ ├── ansi │ │ │ │ ├── ansi-def.mk │ │ │ │ └── ansi.mk │ │ │ ├── atari │ │ │ │ ├── ATARI.H │ │ │ │ ├── FNames.SIC │ │ │ │ ├── FREETYPE.PRJ │ │ │ │ ├── README.TXT │ │ │ │ ├── deflinejoiner.awk │ │ │ │ └── gen-purec-patch.sh │ │ │ ├── beos │ │ │ │ ├── beos-def.mk │ │ │ │ ├── beos.mk │ │ │ │ └── detect.mk │ │ │ ├── cmake │ │ │ │ ├── FindBrotliDec.cmake │ │ │ │ ├── FindHarfBuzz.cmake │ │ │ │ ├── iOS.cmake │ │ │ │ └── testbuild.sh │ │ │ ├── compiler │ │ │ │ ├── ansi-cc.mk │ │ │ │ ├── bcc-dev.mk │ │ │ │ ├── bcc.mk │ │ │ │ ├── emx.mk │ │ │ │ ├── gcc-dev.mk │ │ │ │ ├── gcc.mk │ │ │ │ ├── intelc.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── visualage.mk │ │ │ │ ├── visualc.mk │ │ │ │ ├── watcom.mk │ │ │ │ └── win-lcc.mk │ │ │ ├── detect.mk │ │ │ ├── dos │ │ │ │ ├── detect.mk │ │ │ │ ├── dos-def.mk │ │ │ │ ├── dos-emx.mk │ │ │ │ ├── dos-gcc.mk │ │ │ │ └── dos-wat.mk │ │ │ ├── exports.mk │ │ │ ├── freetype.mk │ │ │ ├── link_dos.mk │ │ │ ├── link_std.mk │ │ │ ├── mac │ │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ │ ├── README │ │ │ │ ├── ascii2mpw.py │ │ │ │ ├── freetype-Info.plist │ │ │ │ ├── ftlib.prj.xml │ │ │ │ └── ftmac.c │ │ │ ├── meson │ │ │ │ ├── extract_freetype_version.py │ │ │ │ ├── extract_libtool_version.py │ │ │ │ ├── generate_reference_docs.py │ │ │ │ ├── parse_modules_cfg.py │ │ │ │ └── process_ftoption_h.py │ │ │ ├── modules.mk │ │ │ ├── os2 │ │ │ │ ├── detect.mk │ │ │ │ ├── os2-def.mk │ │ │ │ ├── os2-dev.mk │ │ │ │ └── os2-gcc.mk │ │ │ ├── symbian │ │ │ │ ├── bld.inf │ │ │ │ └── freetype.mmp │ │ │ ├── toplevel.mk │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── ax_compare_version.m4 │ │ │ │ ├── ax_prog_python_version.m4 │ │ │ │ ├── ax_pthread.m4 │ │ │ │ ├── configure.raw │ │ │ │ ├── detect.mk │ │ │ │ ├── freetype-config.in │ │ │ │ ├── freetype2.in │ │ │ │ ├── freetype2.m4 │ │ │ │ ├── ft-munmap.m4 │ │ │ │ ├── ftconfig.h.in │ │ │ │ ├── ftsystem.c │ │ │ │ ├── install.mk │ │ │ │ ├── pkg.m4 │ │ │ │ ├── unix-cc.in │ │ │ │ ├── unix-def.in │ │ │ │ ├── unix-dev.mk │ │ │ │ ├── unix-lcc.mk │ │ │ │ ├── unix.mk │ │ │ │ └── unixddef.mk │ │ │ ├── vms │ │ │ │ ├── LIBS.OPT_IA64 │ │ │ │ ├── _LINK.OPT_IA64 │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftsystem.c │ │ │ │ └── vmslib.dat │ │ │ ├── wince │ │ │ │ ├── ftdebug.c │ │ │ │ ├── vc2005-ce │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ │ └── vc2008-ce │ │ │ │ │ ├── freetype.sln │ │ │ │ │ ├── freetype.vcproj │ │ │ │ │ └── index.html │ │ │ └── windows │ │ │ │ ├── .gitignore │ │ │ │ ├── detect.mk │ │ │ │ ├── ftdebug.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── vc2010 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.user.props │ │ │ │ ├── freetype.vcxproj │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ ├── index.html │ │ │ │ └── script.bat │ │ │ │ ├── visualc │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ │ ├── visualce │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ │ ├── w32-bcc.mk │ │ │ │ ├── w32-bccd.mk │ │ │ │ ├── w32-dev.mk │ │ │ │ ├── w32-gcc.mk │ │ │ │ ├── w32-icc.mk │ │ │ │ ├── w32-intl.mk │ │ │ │ ├── w32-lcc.mk │ │ │ │ ├── w32-mingw32.mk │ │ │ │ ├── w32-vcc.mk │ │ │ │ ├── w32-wat.mk │ │ │ │ └── win32-def.mk │ │ ├── configure │ │ ├── devel │ │ │ ├── ft2build.h │ │ │ └── ftoption.h │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── CMAKE │ │ │ ├── CUSTOMIZE │ │ │ ├── DEBUG │ │ │ ├── DOCGUIDE │ │ │ ├── FTL.TXT │ │ │ ├── GPLv2.TXT │ │ │ ├── INSTALL │ │ │ ├── INSTALL.ANY │ │ │ ├── INSTALL.CROSS │ │ │ ├── INSTALL.GNU │ │ │ ├── INSTALL.MAC │ │ │ ├── INSTALL.UNIX │ │ │ ├── INSTALL.VMS │ │ │ ├── MAKEPP │ │ │ ├── PROBLEMS │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── VERSIONS.TXT │ │ │ ├── formats.txt │ │ │ ├── freetype-config.1 │ │ │ ├── markdown │ │ │ │ ├── images │ │ │ │ │ └── favico.ico │ │ │ │ ├── javascripts │ │ │ │ │ └── extra.js │ │ │ │ └── stylesheets │ │ │ │ │ └── extra.css │ │ │ ├── oldlogs │ │ │ │ ├── ChangeLog.20 │ │ │ │ ├── ChangeLog.21 │ │ │ │ ├── ChangeLog.210 │ │ │ │ ├── ChangeLog.22 │ │ │ │ ├── ChangeLog.23 │ │ │ │ ├── ChangeLog.24 │ │ │ │ ├── ChangeLog.25 │ │ │ │ ├── ChangeLog.26 │ │ │ │ ├── ChangeLog.27 │ │ │ │ ├── ChangeLog.28 │ │ │ │ └── ChangeLog.29 │ │ │ ├── raster.txt │ │ │ └── release │ │ ├── include │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ ├── ftstdlib.h │ │ │ │ │ ├── integer-types.h │ │ │ │ │ ├── mac-support.h │ │ │ │ │ └── public-macros.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── ftcolor.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftfntfmt.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlogging.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftparams.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── cffotypes.h │ │ │ │ │ ├── cfftypes.h │ │ │ │ │ ├── compiler-macros.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdrv.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── fthash.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpsprop.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmetric.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ └── svwinfnt.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ ├── tttypes.h │ │ │ │ │ └── wofftypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ └── tttags.h │ │ │ └── ft2build.h │ │ ├── meson.build │ │ ├── meson_options.txt │ │ ├── modules.cfg │ │ ├── objs │ │ │ ├── .gitignore │ │ │ └── README │ │ ├── src │ │ │ ├── autofit │ │ │ │ ├── afblue.c │ │ │ │ ├── afblue.cin │ │ │ │ ├── afblue.dat │ │ │ │ ├── afblue.h │ │ │ │ ├── afblue.hin │ │ │ │ ├── afcjk.c │ │ │ │ ├── afcjk.h │ │ │ │ ├── afcover.h │ │ │ │ ├── afdummy.c │ │ │ │ ├── afdummy.h │ │ │ │ ├── aferrors.h │ │ │ │ ├── afglobal.c │ │ │ │ ├── afglobal.h │ │ │ │ ├── afhints.c │ │ │ │ ├── afhints.h │ │ │ │ ├── afindic.c │ │ │ │ ├── afindic.h │ │ │ │ ├── aflatin.c │ │ │ │ ├── aflatin.h │ │ │ │ ├── afloader.c │ │ │ │ ├── afloader.h │ │ │ │ ├── afmodule.c │ │ │ │ ├── afmodule.h │ │ │ │ ├── afranges.c │ │ │ │ ├── afranges.h │ │ │ │ ├── afscript.h │ │ │ │ ├── afshaper.c │ │ │ │ ├── afshaper.h │ │ │ │ ├── afstyles.h │ │ │ │ ├── aftypes.h │ │ │ │ ├── afws-decl.h │ │ │ │ ├── afws-iter.h │ │ │ │ ├── autofit.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── base │ │ │ │ ├── ftadvanc.c │ │ │ │ ├── ftbase.c │ │ │ │ ├── ftbase.h │ │ │ │ ├── ftbbox.c │ │ │ │ ├── ftbdf.c │ │ │ │ ├── ftbitmap.c │ │ │ │ ├── ftcalc.c │ │ │ │ ├── ftcid.c │ │ │ │ ├── ftcolor.c │ │ │ │ ├── ftdbgmem.c │ │ │ │ ├── ftdebug.c │ │ │ │ ├── fterrors.c │ │ │ │ ├── ftfntfmt.c │ │ │ │ ├── ftfstype.c │ │ │ │ ├── ftgasp.c │ │ │ │ ├── ftgloadr.c │ │ │ │ ├── ftglyph.c │ │ │ │ ├── ftgxval.c │ │ │ │ ├── fthash.c │ │ │ │ ├── ftinit.c │ │ │ │ ├── ftlcdfil.c │ │ │ │ ├── ftmac.c │ │ │ │ ├── ftmm.c │ │ │ │ ├── ftobjs.c │ │ │ │ ├── ftotval.c │ │ │ │ ├── ftoutln.c │ │ │ │ ├── ftpatent.c │ │ │ │ ├── ftpfr.c │ │ │ │ ├── ftpsprop.c │ │ │ │ ├── ftrfork.c │ │ │ │ ├── ftsnames.c │ │ │ │ ├── ftstream.c │ │ │ │ ├── ftstroke.c │ │ │ │ ├── ftsynth.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── fttrigon.c │ │ │ │ ├── fttype1.c │ │ │ │ ├── ftutil.c │ │ │ │ ├── ftver.rc │ │ │ │ ├── ftwinfnt.c │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ └── rules.mk │ │ │ ├── bdf │ │ │ │ ├── README │ │ │ │ ├── bdf.c │ │ │ │ ├── bdf.h │ │ │ │ ├── bdfdrivr.c │ │ │ │ ├── bdfdrivr.h │ │ │ │ ├── bdferror.h │ │ │ │ ├── bdflib.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── bzip2 │ │ │ │ ├── ftbzip2.c │ │ │ │ └── rules.mk │ │ │ ├── cache │ │ │ │ ├── ftcache.c │ │ │ │ ├── ftcbasic.c │ │ │ │ ├── ftccache.c │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccback.h │ │ │ │ ├── ftccmap.c │ │ │ │ ├── ftcerror.h │ │ │ │ ├── ftcglyph.c │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.c │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.c │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.c │ │ │ │ ├── ftcmru.h │ │ │ │ ├── ftcsbits.c │ │ │ │ ├── ftcsbits.h │ │ │ │ └── rules.mk │ │ │ ├── cff │ │ │ │ ├── cff.c │ │ │ │ ├── cffcmap.c │ │ │ │ ├── cffcmap.h │ │ │ │ ├── cffdrivr.c │ │ │ │ ├── cffdrivr.h │ │ │ │ ├── cfferrs.h │ │ │ │ ├── cffgload.c │ │ │ │ ├── cffgload.h │ │ │ │ ├── cffload.c │ │ │ │ ├── cffload.h │ │ │ │ ├── cffobjs.c │ │ │ │ ├── cffobjs.h │ │ │ │ ├── cffparse.c │ │ │ │ ├── cffparse.h │ │ │ │ ├── cfftoken.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── cid │ │ │ │ ├── ciderrs.h │ │ │ │ ├── cidgload.c │ │ │ │ ├── cidgload.h │ │ │ │ ├── cidload.c │ │ │ │ ├── cidload.h │ │ │ │ ├── cidobjs.c │ │ │ │ ├── cidobjs.h │ │ │ │ ├── cidparse.c │ │ │ │ ├── cidparse.h │ │ │ │ ├── cidriver.c │ │ │ │ ├── cidriver.h │ │ │ │ ├── cidtoken.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── type1cid.c │ │ │ ├── dlg │ │ │ │ ├── dlgwrap.c │ │ │ │ └── rules.mk │ │ │ ├── gxvalid │ │ │ │ ├── README │ │ │ │ ├── gxvalid.c │ │ │ │ ├── gxvalid.h │ │ │ │ ├── gxvbsln.c │ │ │ │ ├── gxvcommn.c │ │ │ │ ├── gxvcommn.h │ │ │ │ ├── gxverror.h │ │ │ │ ├── gxvfeat.c │ │ │ │ ├── gxvfeat.h │ │ │ │ ├── gxvfgen.c │ │ │ │ ├── gxvjust.c │ │ │ │ ├── gxvkern.c │ │ │ │ ├── gxvlcar.c │ │ │ │ ├── gxvmod.c │ │ │ │ ├── gxvmod.h │ │ │ │ ├── gxvmort.c │ │ │ │ ├── gxvmort.h │ │ │ │ ├── gxvmort0.c │ │ │ │ ├── gxvmort1.c │ │ │ │ ├── gxvmort2.c │ │ │ │ ├── gxvmort4.c │ │ │ │ ├── gxvmort5.c │ │ │ │ ├── gxvmorx.c │ │ │ │ ├── gxvmorx.h │ │ │ │ ├── gxvmorx0.c │ │ │ │ ├── gxvmorx1.c │ │ │ │ ├── gxvmorx2.c │ │ │ │ ├── gxvmorx4.c │ │ │ │ ├── gxvmorx5.c │ │ │ │ ├── gxvopbd.c │ │ │ │ ├── gxvprop.c │ │ │ │ ├── gxvtrak.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ ├── gzip │ │ │ │ ├── adler32.c │ │ │ │ ├── ftgzip.c │ │ │ │ ├── ftzconf.h │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── rules.mk │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ ├── lzw │ │ │ │ ├── ftlzw.c │ │ │ │ ├── ftzopen.c │ │ │ │ ├── ftzopen.h │ │ │ │ └── rules.mk │ │ │ ├── otvalid │ │ │ │ ├── module.mk │ │ │ │ ├── otvalid.c │ │ │ │ ├── otvalid.h │ │ │ │ ├── otvbase.c │ │ │ │ ├── otvcommn.c │ │ │ │ ├── otvcommn.h │ │ │ │ ├── otverror.h │ │ │ │ ├── otvgdef.c │ │ │ │ ├── otvgpos.c │ │ │ │ ├── otvgpos.h │ │ │ │ ├── otvgsub.c │ │ │ │ ├── otvjstf.c │ │ │ │ ├── otvmath.c │ │ │ │ ├── otvmod.c │ │ │ │ ├── otvmod.h │ │ │ │ └── rules.mk │ │ │ ├── pcf │ │ │ │ ├── README │ │ │ │ ├── module.mk │ │ │ │ ├── pcf.c │ │ │ │ ├── pcf.h │ │ │ │ ├── pcfdrivr.c │ │ │ │ ├── pcfdrivr.h │ │ │ │ ├── pcferror.h │ │ │ │ ├── pcfread.c │ │ │ │ ├── pcfread.h │ │ │ │ ├── pcfutil.c │ │ │ │ ├── pcfutil.h │ │ │ │ └── rules.mk │ │ │ ├── pfr │ │ │ │ ├── module.mk │ │ │ │ ├── pfr.c │ │ │ │ ├── pfrcmap.c │ │ │ │ ├── pfrcmap.h │ │ │ │ ├── pfrdrivr.c │ │ │ │ ├── pfrdrivr.h │ │ │ │ ├── pfrerror.h │ │ │ │ ├── pfrgload.c │ │ │ │ ├── pfrgload.h │ │ │ │ ├── pfrload.c │ │ │ │ ├── pfrload.h │ │ │ │ ├── pfrobjs.c │ │ │ │ ├── pfrobjs.h │ │ │ │ ├── pfrsbit.c │ │ │ │ ├── pfrsbit.h │ │ │ │ ├── pfrtypes.h │ │ │ │ └── rules.mk │ │ │ ├── psaux │ │ │ │ ├── afmparse.c │ │ │ │ ├── afmparse.h │ │ │ │ ├── cffdecode.c │ │ │ │ ├── cffdecode.h │ │ │ │ ├── module.mk │ │ │ │ ├── psarrst.c │ │ │ │ ├── psarrst.h │ │ │ │ ├── psaux.c │ │ │ │ ├── psauxerr.h │ │ │ │ ├── psauxmod.c │ │ │ │ ├── psauxmod.h │ │ │ │ ├── psblues.c │ │ │ │ ├── psblues.h │ │ │ │ ├── psconv.c │ │ │ │ ├── psconv.h │ │ │ │ ├── pserror.c │ │ │ │ ├── pserror.h │ │ │ │ ├── psfixed.h │ │ │ │ ├── psfont.c │ │ │ │ ├── psfont.h │ │ │ │ ├── psft.c │ │ │ │ ├── psft.h │ │ │ │ ├── psglue.h │ │ │ │ ├── pshints.c │ │ │ │ ├── pshints.h │ │ │ │ ├── psintrp.c │ │ │ │ ├── psintrp.h │ │ │ │ ├── psobjs.c │ │ │ │ ├── psobjs.h │ │ │ │ ├── psread.c │ │ │ │ ├── psread.h │ │ │ │ ├── psstack.c │ │ │ │ ├── psstack.h │ │ │ │ ├── pstypes.h │ │ │ │ ├── rules.mk │ │ │ │ ├── t1cmap.c │ │ │ │ ├── t1cmap.h │ │ │ │ ├── t1decode.c │ │ │ │ └── t1decode.h │ │ │ ├── pshinter │ │ │ │ ├── module.mk │ │ │ │ ├── pshalgo.c │ │ │ │ ├── pshalgo.h │ │ │ │ ├── pshglob.c │ │ │ │ ├── pshglob.h │ │ │ │ ├── pshinter.c │ │ │ │ ├── pshmod.c │ │ │ │ ├── pshmod.h │ │ │ │ ├── pshnterr.h │ │ │ │ ├── pshrec.c │ │ │ │ ├── pshrec.h │ │ │ │ └── rules.mk │ │ │ ├── psnames │ │ │ │ ├── module.mk │ │ │ │ ├── psmodule.c │ │ │ │ ├── psmodule.h │ │ │ │ ├── psnamerr.h │ │ │ │ ├── psnames.c │ │ │ │ ├── pstables.h │ │ │ │ └── rules.mk │ │ │ ├── raster │ │ │ │ ├── ftmisc.h │ │ │ │ ├── ftraster.c │ │ │ │ ├── ftraster.h │ │ │ │ ├── ftrend1.c │ │ │ │ ├── ftrend1.h │ │ │ │ ├── module.mk │ │ │ │ ├── raster.c │ │ │ │ ├── rasterrs.h │ │ │ │ └── rules.mk │ │ │ ├── sdf │ │ │ │ ├── ftbsdf.c │ │ │ │ ├── ftsdf.c │ │ │ │ ├── ftsdf.h │ │ │ │ ├── ftsdfcommon.c │ │ │ │ ├── ftsdfcommon.h │ │ │ │ ├── ftsdferrs.h │ │ │ │ ├── ftsdfrend.c │ │ │ │ ├── ftsdfrend.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── sdf.c │ │ │ ├── sfnt │ │ │ │ ├── module.mk │ │ │ │ ├── pngshim.c │ │ │ │ ├── pngshim.h │ │ │ │ ├── rules.mk │ │ │ │ ├── sfdriver.c │ │ │ │ ├── sfdriver.h │ │ │ │ ├── sferrors.h │ │ │ │ ├── sfnt.c │ │ │ │ ├── sfobjs.c │ │ │ │ ├── sfobjs.h │ │ │ │ ├── sfwoff.c │ │ │ │ ├── sfwoff.h │ │ │ │ ├── sfwoff2.c │ │ │ │ ├── sfwoff2.h │ │ │ │ ├── ttbdf.c │ │ │ │ ├── ttbdf.h │ │ │ │ ├── ttcmap.c │ │ │ │ ├── ttcmap.h │ │ │ │ ├── ttcmapc.h │ │ │ │ ├── ttcolr.c │ │ │ │ ├── ttcolr.h │ │ │ │ ├── ttcpal.c │ │ │ │ ├── ttcpal.h │ │ │ │ ├── ttkern.c │ │ │ │ ├── ttkern.h │ │ │ │ ├── ttload.c │ │ │ │ ├── ttload.h │ │ │ │ ├── ttmtx.c │ │ │ │ ├── ttmtx.h │ │ │ │ ├── ttpost.c │ │ │ │ ├── ttpost.h │ │ │ │ ├── ttsbit.c │ │ │ │ ├── ttsbit.h │ │ │ │ ├── woff2tags.c │ │ │ │ └── woff2tags.h │ │ │ ├── smooth │ │ │ │ ├── ftgrays.c │ │ │ │ ├── ftgrays.h │ │ │ │ ├── ftsmerrs.h │ │ │ │ ├── ftsmooth.c │ │ │ │ ├── ftsmooth.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── smooth.c │ │ │ ├── tools │ │ │ │ ├── afblue.pl │ │ │ │ ├── apinames.c │ │ │ │ ├── chktrcmp.py │ │ │ │ ├── cordic.py │ │ │ │ ├── ftrandom │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── ftrandom.c │ │ │ │ ├── glnames.py │ │ │ │ ├── make_distribution_archives.py │ │ │ │ ├── no-copyright │ │ │ │ ├── test_afm.c │ │ │ │ ├── test_bbox.c │ │ │ │ ├── test_trig.c │ │ │ │ ├── update-copyright │ │ │ │ └── update-copyright-year │ │ │ ├── truetype │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── truetype.c │ │ │ │ ├── ttdriver.c │ │ │ │ ├── ttdriver.h │ │ │ │ ├── tterrors.h │ │ │ │ ├── ttgload.c │ │ │ │ ├── ttgload.h │ │ │ │ ├── ttgxvar.c │ │ │ │ ├── ttgxvar.h │ │ │ │ ├── ttinterp.c │ │ │ │ ├── ttinterp.h │ │ │ │ ├── ttobjs.c │ │ │ │ ├── ttobjs.h │ │ │ │ ├── ttpload.c │ │ │ │ ├── ttpload.h │ │ │ │ ├── ttsubpix.c │ │ │ │ └── ttsubpix.h │ │ │ ├── type1 │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t1afm.c │ │ │ │ ├── t1afm.h │ │ │ │ ├── t1driver.c │ │ │ │ ├── t1driver.h │ │ │ │ ├── t1errors.h │ │ │ │ ├── t1gload.c │ │ │ │ ├── t1gload.h │ │ │ │ ├── t1load.c │ │ │ │ ├── t1load.h │ │ │ │ ├── t1objs.c │ │ │ │ ├── t1objs.h │ │ │ │ ├── t1parse.c │ │ │ │ ├── t1parse.h │ │ │ │ ├── t1tokens.h │ │ │ │ └── type1.c │ │ │ ├── type42 │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t42drivr.c │ │ │ │ ├── t42drivr.h │ │ │ │ ├── t42error.h │ │ │ │ ├── t42objs.c │ │ │ │ ├── t42objs.h │ │ │ │ ├── t42parse.c │ │ │ │ ├── t42parse.h │ │ │ │ ├── t42types.h │ │ │ │ └── type42.c │ │ │ └── winfonts │ │ │ │ ├── fnterrs.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── winfnt.c │ │ │ │ └── winfnt.h │ │ ├── subprojects │ │ │ ├── libpng.wrap │ │ │ └── zlib.wrap │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── issue-1063 │ │ │ │ └── main.c │ │ │ ├── meson.build │ │ │ └── scripts │ │ │ │ └── download-test-fonts.py │ │ └── vms_make.com │ ├── lv_conf.h │ ├── lv_demo_conf.h │ ├── lv_demos │ │ ├── .github │ │ │ ├── auto-comment.yml │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── docs │ │ │ └── LICENSE.md │ │ ├── library.properties │ │ ├── lv_demo.h │ │ ├── lv_demo.mk │ │ ├── lv_demo_conf_template.h │ │ ├── scripts │ │ │ ├── build_all_examples.sh │ │ │ ├── examples.txt │ │ │ └── genexamplestxt.sh │ │ └── src │ │ │ ├── header.py │ │ │ ├── lv_demo.h │ │ │ ├── lv_demo_benchmark │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── img_benchmark_cogwheel_alpha16.c │ │ │ │ ├── img_benchmark_cogwheel_argb.c │ │ │ │ ├── img_benchmark_cogwheel_chroma_keyed.c │ │ │ │ ├── img_benchmark_cogwheel_indexed16.c │ │ │ │ ├── img_benchmark_cogwheel_rgb.c │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ ├── lv_font_montserrat_12_compr_az.c │ │ │ │ ├── lv_font_montserrat_16_compr_az.c │ │ │ │ └── lv_font_montserrat_28_compr_az.c │ │ │ ├── lv_demo_benchmark.c │ │ │ ├── lv_demo_benchmark.h │ │ │ ├── screenshot1.png │ │ │ └── screenshot2.png │ │ │ ├── lv_demo_keypad_encoder │ │ │ ├── README.md │ │ │ ├── lv_demo_keypad_encoder.c │ │ │ ├── lv_demo_keypad_encoder.h │ │ │ ├── screenshot1.gif │ │ │ └── screenshot1.png │ │ │ ├── lv_demo_music │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── img_lv_demo_music_btn_corner_large.c │ │ │ │ ├── img_lv_demo_music_btn_list_pause.c │ │ │ │ ├── img_lv_demo_music_btn_list_pause_large.c │ │ │ │ ├── img_lv_demo_music_btn_list_play.c │ │ │ │ ├── img_lv_demo_music_btn_list_play_large.c │ │ │ │ ├── img_lv_demo_music_btn_loop.c │ │ │ │ ├── img_lv_demo_music_btn_loop_large.c │ │ │ │ ├── img_lv_demo_music_btn_next.c │ │ │ │ ├── img_lv_demo_music_btn_next_large.c │ │ │ │ ├── img_lv_demo_music_btn_pause.c │ │ │ │ ├── img_lv_demo_music_btn_pause_large.c │ │ │ │ ├── img_lv_demo_music_btn_play.c │ │ │ │ ├── img_lv_demo_music_btn_play_large.c │ │ │ │ ├── img_lv_demo_music_btn_prev.c │ │ │ │ ├── img_lv_demo_music_btn_prev_large.c │ │ │ │ ├── img_lv_demo_music_btn_rnd.c │ │ │ │ ├── img_lv_demo_music_btn_rnd_large.c │ │ │ │ ├── img_lv_demo_music_corner_left.c │ │ │ │ ├── img_lv_demo_music_corner_left_large.c │ │ │ │ ├── img_lv_demo_music_corner_right.c │ │ │ │ ├── img_lv_demo_music_corner_right_large.c │ │ │ │ ├── img_lv_demo_music_cover_1.c │ │ │ │ ├── img_lv_demo_music_cover_1_large.c │ │ │ │ ├── img_lv_demo_music_cover_2.c │ │ │ │ ├── img_lv_demo_music_cover_2_large.c │ │ │ │ ├── img_lv_demo_music_cover_3.c │ │ │ │ ├── img_lv_demo_music_cover_3_large.c │ │ │ │ ├── img_lv_demo_music_icon_1.c │ │ │ │ ├── img_lv_demo_music_icon_1_large.c │ │ │ │ ├── img_lv_demo_music_icon_2.c │ │ │ │ ├── img_lv_demo_music_icon_2_large.c │ │ │ │ ├── img_lv_demo_music_icon_3.c │ │ │ │ ├── img_lv_demo_music_icon_3_large.c │ │ │ │ ├── img_lv_demo_music_icon_4.c │ │ │ │ ├── img_lv_demo_music_icon_4_large.c │ │ │ │ ├── img_lv_demo_music_list_border.c │ │ │ │ ├── img_lv_demo_music_list_border_large.c │ │ │ │ ├── img_lv_demo_music_logo.c │ │ │ │ ├── img_lv_demo_music_slider_knob.c │ │ │ │ ├── img_lv_demo_music_slider_knob_large.c │ │ │ │ ├── img_lv_demo_music_wave_bottom.c │ │ │ │ ├── img_lv_demo_music_wave_bottom_large.c │ │ │ │ ├── img_lv_demo_music_wave_top.c │ │ │ │ ├── img_lv_demo_music_wave_top_large.c │ │ │ │ ├── spectrum.py │ │ │ │ ├── spectrum_1.h │ │ │ │ ├── spectrum_2.h │ │ │ │ └── spectrum_3.h │ │ │ ├── lv_demo_music.c │ │ │ ├── lv_demo_music.h │ │ │ ├── lv_demo_music_list.c │ │ │ ├── lv_demo_music_list.h │ │ │ ├── lv_demo_music_main.c │ │ │ ├── lv_demo_music_main.h │ │ │ └── screenshot1.gif │ │ │ ├── lv_demo_stress │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ ├── lv_font_montserrat_12_compr_az.c │ │ │ │ ├── lv_font_montserrat_16_compr_az.c │ │ │ │ └── lv_font_montserrat_28_compr_az.c │ │ │ ├── lv_demo_stress.c │ │ │ ├── lv_demo_stress.h │ │ │ ├── screenshot1.gif │ │ │ └── screenshot1.png │ │ │ └── lv_demo_widgets │ │ │ ├── assets │ │ │ ├── avatar.png │ │ │ ├── clothes.png │ │ │ ├── img_clothes.c │ │ │ ├── img_demo_widgets_avatar.c │ │ │ ├── img_lvgl_logo.c │ │ │ └── lvgl_logo.png │ │ │ ├── lv_demo_widgets.c │ │ │ ├── lv_demo_widgets.h │ │ │ ├── lv_demo_widgets.py │ │ │ ├── screenshot1.gif │ │ │ └── screenshot1.png │ ├── lv_drivers │ │ ├── .github │ │ │ ├── auto-comment.yml │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── display │ │ │ ├── GC9A01.c │ │ │ ├── GC9A01.h │ │ │ ├── ILI9341.c │ │ │ ├── ILI9341.h │ │ │ ├── R61581.c │ │ │ ├── R61581.h │ │ │ ├── SHARP_MIP.c │ │ │ ├── SHARP_MIP.h │ │ │ ├── SSD1963.c │ │ │ ├── SSD1963.h │ │ │ ├── ST7565.c │ │ │ ├── ST7565.h │ │ │ ├── UC1610.c │ │ │ ├── UC1610.h │ │ │ ├── drm.c │ │ │ ├── drm.h │ │ │ ├── fbdev.c │ │ │ ├── fbdev.h │ │ │ └── monitor.h │ │ ├── docs │ │ │ ├── astyle_c │ │ │ └── astyle_h │ │ ├── gtkdrv │ │ │ ├── README.md │ │ │ ├── broadway.png │ │ │ ├── gtkdrv.c │ │ │ └── gtkdrv.h │ │ ├── indev │ │ │ ├── AD_touch.c │ │ │ ├── AD_touch.h │ │ │ ├── FT5406EE8.c │ │ │ ├── FT5406EE8.h │ │ │ ├── XPT2046.c │ │ │ ├── XPT2046.h │ │ │ ├── evdev.c │ │ │ ├── evdev.h │ │ │ ├── keyboard.h │ │ │ ├── libinput.c │ │ │ ├── libinput_drv.h │ │ │ ├── mouse.h │ │ │ ├── mousewheel.h │ │ │ ├── xkb.c │ │ │ └── xkb.h │ │ ├── library.json │ │ ├── lv_drivers.mk │ │ ├── lv_drv_conf_template.h │ │ ├── sdl │ │ │ ├── sdl.c │ │ │ ├── sdl.h │ │ │ ├── sdl_gpu.c │ │ │ └── sdl_gpu.h │ │ ├── wayland │ │ │ ├── README.md │ │ │ ├── wayland.c │ │ │ └── wayland.h │ │ ├── win32drv │ │ │ ├── win32drv.c │ │ │ └── win32drv.h │ │ ├── win_drv.c │ │ └── win_drv.h │ ├── lv_drv_conf.h │ ├── lvgl │ │ ├── .codecov.yml │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug-report.md │ │ │ │ ├── config.yml │ │ │ │ └── dev-discussion.md │ │ │ ├── auto-comment.yml │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── build_micropython.yml │ │ │ │ ├── ccpp.yml │ │ │ │ ├── check_conf.yml │ │ │ │ ├── close_old_issues.yml │ │ │ │ ├── compile_docs.yml │ │ │ │ ├── esp_upload_component.yml │ │ │ │ ├── main.yml │ │ │ │ └── release.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── SConscript │ │ ├── component.mk │ │ ├── docs │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ROADMAP.md │ │ │ ├── _ext │ │ │ │ └── lv_example.py │ │ │ ├── _static │ │ │ │ ├── css │ │ │ │ │ ├── custom.css │ │ │ │ │ └── fontawesome.min.css │ │ │ │ └── img │ │ │ │ │ ├── home_1.png │ │ │ │ │ ├── home_2.png │ │ │ │ │ ├── home_3.png │ │ │ │ │ ├── home_4.png │ │ │ │ │ ├── home_5.png │ │ │ │ │ ├── home_6.png │ │ │ │ │ └── home_banner.jpg │ │ │ ├── _templates │ │ │ │ ├── layout.html │ │ │ │ └── page.html │ │ │ ├── build.py │ │ │ ├── conf.py │ │ │ ├── example_list.py │ │ │ ├── favicon.png │ │ │ ├── get-started │ │ │ │ ├── arduino.md │ │ │ │ ├── espressif.md │ │ │ │ ├── index.md │ │ │ │ ├── micropython.md │ │ │ │ ├── nuttx.md │ │ │ │ ├── nxp.md │ │ │ │ ├── pc-simulator.md │ │ │ │ ├── quick-overview.md │ │ │ │ └── stm32.md │ │ │ ├── header.rst │ │ │ ├── index.md │ │ │ ├── intro │ │ │ │ └── index.md │ │ │ ├── layouts │ │ │ │ ├── flex.md │ │ │ │ ├── grid.md │ │ │ │ └── index.md │ │ │ ├── libs │ │ │ │ ├── bmp.md │ │ │ │ ├── freetype.md │ │ │ │ ├── fsdrv.md │ │ │ │ ├── gif.md │ │ │ │ ├── index.md │ │ │ │ ├── png.md │ │ │ │ ├── qrcode.md │ │ │ │ ├── rlottie.md │ │ │ │ └── sjpg.md │ │ │ ├── logo_lvgl.png │ │ │ ├── misc │ │ │ │ ├── align.png │ │ │ │ ├── anim-timeline.png │ │ │ │ ├── bidi.png │ │ │ │ ├── boxmodel.png │ │ │ │ ├── btn_example.png │ │ │ │ ├── button_style_example.gif │ │ │ │ ├── button_style_example.png │ │ │ │ ├── codeblocks.jpg │ │ │ │ ├── eclipse.jpg │ │ │ │ ├── layers.png │ │ │ │ ├── par_child1.png │ │ │ │ ├── par_child2.png │ │ │ │ ├── par_child3.png │ │ │ │ ├── platformio.jpg │ │ │ │ ├── qtcreator.jpg │ │ │ │ ├── simple_button_example.gif │ │ │ │ ├── simple_button_example.png │ │ │ │ ├── symbols.png │ │ │ │ ├── sys.png │ │ │ │ └── visualstudio.jpg │ │ │ ├── others │ │ │ │ ├── index.md │ │ │ │ └── snapshot.md │ │ │ ├── overview │ │ │ │ ├── animation.md │ │ │ │ ├── color.md │ │ │ │ ├── coords.md │ │ │ │ ├── display.md │ │ │ │ ├── drawing.md │ │ │ │ ├── event.md │ │ │ │ ├── file-system.md │ │ │ │ ├── font.md │ │ │ │ ├── image.md │ │ │ │ ├── indev.md │ │ │ │ ├── index.md │ │ │ │ ├── layer.md │ │ │ │ ├── new_widget.md │ │ │ │ ├── object.md │ │ │ │ ├── scroll.md │ │ │ │ ├── style-props.md │ │ │ │ ├── style.md │ │ │ │ └── timer.md │ │ │ ├── porting │ │ │ │ ├── display.md │ │ │ │ ├── indev.md │ │ │ │ ├── index.md │ │ │ │ ├── log.md │ │ │ │ ├── os.md │ │ │ │ ├── project.md │ │ │ │ ├── sleep.md │ │ │ │ ├── task-handler.md │ │ │ │ └── tick.md │ │ │ ├── requirements.txt │ │ │ └── widgets │ │ │ │ ├── core │ │ │ │ ├── arc.md │ │ │ │ ├── bar.md │ │ │ │ ├── btn.md │ │ │ │ ├── btnmatrix.md │ │ │ │ ├── canvas.md │ │ │ │ ├── checkbox.md │ │ │ │ ├── dropdown.md │ │ │ │ ├── img.md │ │ │ │ ├── index.md │ │ │ │ ├── label.md │ │ │ │ ├── line.md │ │ │ │ ├── roller.md │ │ │ │ ├── slider.md │ │ │ │ ├── switch.md │ │ │ │ ├── table.md │ │ │ │ └── textarea.md │ │ │ │ ├── extra │ │ │ │ ├── animimg.md │ │ │ │ ├── calendar.md │ │ │ │ ├── chart.md │ │ │ │ ├── colorwheel.md │ │ │ │ ├── imgbtn.md │ │ │ │ ├── index.md │ │ │ │ ├── keyboard.md │ │ │ │ ├── led.md │ │ │ │ ├── list.md │ │ │ │ ├── meter.md │ │ │ │ ├── msgbox.md │ │ │ │ ├── span.md │ │ │ │ ├── spinbox.md │ │ │ │ ├── spinner.md │ │ │ │ ├── tabview.md │ │ │ │ ├── tileview.md │ │ │ │ └── win.md │ │ │ │ ├── index.md │ │ │ │ └── obj.md │ │ ├── examples │ │ │ ├── anim │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_anim.h │ │ │ │ ├── lv_example_anim_1.c │ │ │ │ ├── lv_example_anim_1.py │ │ │ │ ├── lv_example_anim_2.c │ │ │ │ ├── lv_example_anim_2.py │ │ │ │ ├── lv_example_anim_3.c │ │ │ │ ├── lv_example_anim_3.py │ │ │ │ ├── lv_example_anim_timeline_1.c │ │ │ │ └── lv_example_anim_timeline_1.py │ │ │ ├── arduino │ │ │ │ └── LVGL_Arduino │ │ │ │ │ └── LVGL_Arduino.ino │ │ │ ├── assets │ │ │ │ ├── animimg001.c │ │ │ │ ├── animimg001.png │ │ │ │ ├── animimg002.c │ │ │ │ ├── animimg002.png │ │ │ │ ├── animimg003.c │ │ │ │ ├── animimg003.png │ │ │ │ ├── caret_down.png │ │ │ │ ├── font │ │ │ │ │ ├── lv_font_simsun_16_cjk.fnt │ │ │ │ │ ├── montserrat-16.fnt │ │ │ │ │ └── montserrat-22.fnt │ │ │ │ ├── img_caret_down.c │ │ │ │ ├── img_caret_down.png │ │ │ │ ├── img_cogwheel_alpha16.c │ │ │ │ ├── img_cogwheel_argb.c │ │ │ │ ├── img_cogwheel_argb.png │ │ │ │ ├── img_cogwheel_chroma_keyed.c │ │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ │ ├── img_cogwheel_indexed16.c │ │ │ │ ├── img_cogwheel_indexed16.png │ │ │ │ ├── img_cogwheel_rgb.c │ │ │ │ ├── img_cogwheel_rgb.png │ │ │ │ ├── img_hand.c │ │ │ │ ├── img_hand_hour.png │ │ │ │ ├── img_hand_min.png │ │ │ │ ├── img_skew_strip.c │ │ │ │ ├── img_skew_strip.png │ │ │ │ ├── img_skew_strip_80x20_argb8888.fnt │ │ │ │ ├── img_star.c │ │ │ │ ├── img_star.png │ │ │ │ ├── img_strip.png │ │ │ │ ├── imgbtn_left.c │ │ │ │ ├── imgbtn_left.png │ │ │ │ ├── imgbtn_mid.c │ │ │ │ ├── imgbtn_mid.png │ │ │ │ ├── imgbtn_right.c │ │ │ │ ├── imgbtn_right.png │ │ │ │ ├── skew_strip.png │ │ │ │ └── star.png │ │ │ ├── event │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_event.h │ │ │ │ ├── lv_example_event_1.c │ │ │ │ ├── lv_example_event_1.py │ │ │ │ ├── lv_example_event_2.c │ │ │ │ ├── lv_example_event_2.py │ │ │ │ ├── lv_example_event_3.c │ │ │ │ └── lv_example_event_3.py │ │ │ ├── examples.mk │ │ │ ├── get_started │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_get_started.h │ │ │ │ ├── lv_example_get_started_1.c │ │ │ │ ├── lv_example_get_started_1.py │ │ │ │ ├── lv_example_get_started_2.c │ │ │ │ ├── lv_example_get_started_2.py │ │ │ │ ├── lv_example_get_started_3.c │ │ │ │ └── lv_example_get_started_3.py │ │ │ ├── header.py │ │ │ ├── layouts │ │ │ │ ├── flex │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_flex.h │ │ │ │ │ ├── lv_example_flex_1.c │ │ │ │ │ ├── lv_example_flex_1.py │ │ │ │ │ ├── lv_example_flex_2.c │ │ │ │ │ ├── lv_example_flex_2.py │ │ │ │ │ ├── lv_example_flex_3.c │ │ │ │ │ ├── lv_example_flex_3.py │ │ │ │ │ ├── lv_example_flex_4.c │ │ │ │ │ ├── lv_example_flex_4.py │ │ │ │ │ ├── lv_example_flex_5.c │ │ │ │ │ ├── lv_example_flex_5.py │ │ │ │ │ ├── lv_example_flex_6.c │ │ │ │ │ └── lv_example_flex_6.py │ │ │ │ ├── grid │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_grid.h │ │ │ │ │ ├── lv_example_grid_1.c │ │ │ │ │ ├── lv_example_grid_1.py │ │ │ │ │ ├── lv_example_grid_2.c │ │ │ │ │ ├── lv_example_grid_2.py │ │ │ │ │ ├── lv_example_grid_3.c │ │ │ │ │ ├── lv_example_grid_3.py │ │ │ │ │ ├── lv_example_grid_4.c │ │ │ │ │ ├── lv_example_grid_4.py │ │ │ │ │ ├── lv_example_grid_5.c │ │ │ │ │ ├── lv_example_grid_5.py │ │ │ │ │ ├── lv_example_grid_6.c │ │ │ │ │ └── lv_example_grid_6.py │ │ │ │ └── lv_example_layout.h │ │ │ ├── libs │ │ │ │ ├── bmp │ │ │ │ │ ├── example_16bit.bmp │ │ │ │ │ ├── example_24bit.bmp │ │ │ │ │ ├── example_32bit.bmp │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_bmp.h │ │ │ │ │ └── lv_example_bmp_1.c │ │ │ │ ├── freetype │ │ │ │ │ ├── arial.ttf │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_freetype.h │ │ │ │ │ └── lv_example_freetype_1.c │ │ │ │ ├── gif │ │ │ │ │ ├── bulb.gif │ │ │ │ │ ├── img_bulb_gif.c │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_gif.h │ │ │ │ │ └── lv_example_gif_1.c │ │ │ │ ├── lv_example_libs.h │ │ │ │ ├── png │ │ │ │ │ ├── img_wing_png.c │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_png.h │ │ │ │ │ ├── lv_example_png_1.c │ │ │ │ │ └── wink.png │ │ │ │ ├── qrcode │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_qrcode.h │ │ │ │ │ └── lv_example_qrcode_1.c │ │ │ │ ├── rlottie │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_rlottie.h │ │ │ │ │ ├── lv_example_rlottie_1.c │ │ │ │ │ ├── lv_example_rlottie_2.c │ │ │ │ │ ├── lv_example_rlottie_approve.c │ │ │ │ │ └── lv_example_rlottie_approve.json │ │ │ │ └── sjpg │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_sjpg.h │ │ │ │ │ ├── lv_example_sjpg_1.c │ │ │ │ │ └── small_image.sjpg │ │ │ ├── lv_examples.h │ │ │ ├── others │ │ │ │ ├── lv_example_others.h │ │ │ │ └── snapshot │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── lv_example_snapshot.h │ │ │ │ │ ├── lv_example_snapshot_1.c │ │ │ │ │ └── lv_example_snapshot_1.py │ │ │ ├── porting │ │ │ │ ├── lv_port_disp_template.c │ │ │ │ ├── lv_port_disp_template.h │ │ │ │ ├── lv_port_fs_template.c │ │ │ │ ├── lv_port_fs_template.h │ │ │ │ ├── lv_port_indev_template.c │ │ │ │ └── lv_port_indev_template.h │ │ │ ├── scroll │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_scroll.h │ │ │ │ ├── lv_example_scroll_1.c │ │ │ │ ├── lv_example_scroll_1.py │ │ │ │ ├── lv_example_scroll_2.c │ │ │ │ ├── lv_example_scroll_2.py │ │ │ │ ├── lv_example_scroll_3.c │ │ │ │ ├── lv_example_scroll_3.py │ │ │ │ ├── lv_example_scroll_4.c │ │ │ │ ├── lv_example_scroll_4.py │ │ │ │ ├── lv_example_scroll_5.c │ │ │ │ ├── lv_example_scroll_5.py │ │ │ │ ├── lv_example_scroll_6.c │ │ │ │ └── lv_example_scroll_6.py │ │ │ ├── styles │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_style.h │ │ │ │ ├── lv_example_style_1.c │ │ │ │ ├── lv_example_style_1.py │ │ │ │ ├── lv_example_style_10.c │ │ │ │ ├── lv_example_style_10.py │ │ │ │ ├── lv_example_style_11.c │ │ │ │ ├── lv_example_style_11.py │ │ │ │ ├── lv_example_style_12.c │ │ │ │ ├── lv_example_style_12.py │ │ │ │ ├── lv_example_style_13.c │ │ │ │ ├── lv_example_style_13.py │ │ │ │ ├── lv_example_style_14.c │ │ │ │ ├── lv_example_style_14.py │ │ │ │ ├── lv_example_style_2.c │ │ │ │ ├── lv_example_style_2.py │ │ │ │ ├── lv_example_style_3.c │ │ │ │ ├── lv_example_style_3.py │ │ │ │ ├── lv_example_style_4.c │ │ │ │ ├── lv_example_style_4.py │ │ │ │ ├── lv_example_style_5.c │ │ │ │ ├── lv_example_style_5.py │ │ │ │ ├── lv_example_style_6.c │ │ │ │ ├── lv_example_style_6.py │ │ │ │ ├── lv_example_style_7.c │ │ │ │ ├── lv_example_style_7.py │ │ │ │ ├── lv_example_style_8.c │ │ │ │ ├── lv_example_style_8.py │ │ │ │ ├── lv_example_style_9.c │ │ │ │ └── lv_example_style_9.py │ │ │ ├── test_ex.sh │ │ │ └── widgets │ │ │ │ ├── animimg │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_animimg_1.c │ │ │ │ └── lv_example_animimg_1.py │ │ │ │ ├── arc │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_arc_1.c │ │ │ │ ├── lv_example_arc_1.py │ │ │ │ ├── lv_example_arc_2.c │ │ │ │ └── lv_example_arc_2.py │ │ │ │ ├── bar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_bar_1.c │ │ │ │ ├── lv_example_bar_1.py │ │ │ │ ├── lv_example_bar_2.c │ │ │ │ ├── lv_example_bar_2.py │ │ │ │ ├── lv_example_bar_3.c │ │ │ │ ├── lv_example_bar_3.py │ │ │ │ ├── lv_example_bar_4.c │ │ │ │ ├── lv_example_bar_4.py │ │ │ │ ├── lv_example_bar_5.c │ │ │ │ ├── lv_example_bar_5.py │ │ │ │ ├── lv_example_bar_6.c │ │ │ │ ├── lv_example_bar_6.py │ │ │ │ └── test.py │ │ │ │ ├── btn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btn_1.c │ │ │ │ ├── lv_example_btn_1.py │ │ │ │ ├── lv_example_btn_2.c │ │ │ │ ├── lv_example_btn_2.py │ │ │ │ ├── lv_example_btn_3.c │ │ │ │ └── lv_example_btn_3.py │ │ │ │ ├── btnmatrix │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_btnmatrix_1.c │ │ │ │ ├── lv_example_btnmatrix_1.py │ │ │ │ ├── lv_example_btnmatrix_2.c │ │ │ │ ├── lv_example_btnmatrix_2.py │ │ │ │ ├── lv_example_btnmatrix_3.c │ │ │ │ └── lv_example_btnmatrix_3.py │ │ │ │ ├── calendar │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_calendar_1.c │ │ │ │ └── lv_example_calendar_1.py │ │ │ │ ├── canvas │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_canvas_1.c │ │ │ │ ├── lv_example_canvas_1.py │ │ │ │ ├── lv_example_canvas_2.c │ │ │ │ └── lv_example_canvas_2.py │ │ │ │ ├── chart │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_chart_1.c │ │ │ │ ├── lv_example_chart_1.py │ │ │ │ ├── lv_example_chart_2.c │ │ │ │ ├── lv_example_chart_2.py │ │ │ │ ├── lv_example_chart_3.c │ │ │ │ ├── lv_example_chart_3.py │ │ │ │ ├── lv_example_chart_4.c │ │ │ │ ├── lv_example_chart_4.py │ │ │ │ ├── lv_example_chart_5.c │ │ │ │ ├── lv_example_chart_5.py │ │ │ │ ├── lv_example_chart_6.c │ │ │ │ ├── lv_example_chart_6.py │ │ │ │ ├── lv_example_chart_7.c │ │ │ │ ├── lv_example_chart_7.py │ │ │ │ ├── lv_example_chart_8.c │ │ │ │ ├── lv_example_chart_8.py │ │ │ │ ├── lv_example_chart_9.c │ │ │ │ └── lv_example_chart_9.py │ │ │ │ ├── checkbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_checkbox_1.c │ │ │ │ ├── lv_example_checkbox_1.py │ │ │ │ └── lv_example_checkbox_2.c │ │ │ │ ├── colorwheel │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_colorwheel_1.c │ │ │ │ └── lv_example_colorwheel_1.py │ │ │ │ ├── dropdown │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_dropdown_1.c │ │ │ │ ├── lv_example_dropdown_1.py │ │ │ │ ├── lv_example_dropdown_2.c │ │ │ │ ├── lv_example_dropdown_2.py │ │ │ │ ├── lv_example_dropdown_3.c │ │ │ │ └── lv_example_dropdown_3.py │ │ │ │ ├── img │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_img_1.c │ │ │ │ ├── lv_example_img_1.py │ │ │ │ ├── lv_example_img_2.c │ │ │ │ ├── lv_example_img_2.py │ │ │ │ ├── lv_example_img_3.c │ │ │ │ ├── lv_example_img_3.py │ │ │ │ ├── lv_example_img_4.c │ │ │ │ └── lv_example_img_4.py │ │ │ │ ├── imgbtn │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_imgbtn_1.c │ │ │ │ └── lv_example_imgbtn_1.py │ │ │ │ ├── keyboard │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_keyboard_1.c │ │ │ │ └── lv_example_keyboard_1.py │ │ │ │ ├── label │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_label_1.c │ │ │ │ ├── lv_example_label_1.py │ │ │ │ ├── lv_example_label_2.c │ │ │ │ ├── lv_example_label_2.py │ │ │ │ ├── lv_example_label_3.c │ │ │ │ └── lv_example_label_3.py │ │ │ │ ├── led │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_led_1.c │ │ │ │ └── lv_example_led_1.py │ │ │ │ ├── line │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_line_1.c │ │ │ │ └── lv_example_line_1.py │ │ │ │ ├── list │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_list_1.c │ │ │ │ ├── lv_example_list_1.py │ │ │ │ ├── lv_example_list_2.c │ │ │ │ ├── lv_example_list_2.py │ │ │ │ └── test.py │ │ │ │ ├── lv_example_widgets.h │ │ │ │ ├── meter │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_meter_1.c │ │ │ │ ├── lv_example_meter_1.py │ │ │ │ ├── lv_example_meter_2.c │ │ │ │ ├── lv_example_meter_2.py │ │ │ │ ├── lv_example_meter_3.c │ │ │ │ ├── lv_example_meter_3.py │ │ │ │ ├── lv_example_meter_4.c │ │ │ │ └── lv_example_meter_4.py │ │ │ │ ├── msgbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_msgbox_1.c │ │ │ │ └── lv_example_msgbox_1.py │ │ │ │ ├── roller │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_roller_1.c │ │ │ │ ├── lv_example_roller_1.py │ │ │ │ ├── lv_example_roller_2.c │ │ │ │ ├── lv_example_roller_2.py │ │ │ │ ├── lv_example_roller_3.c │ │ │ │ └── lv_example_roller_3.py │ │ │ │ ├── slider │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_slider_1.c │ │ │ │ ├── lv_example_slider_1.py │ │ │ │ ├── lv_example_slider_2.c │ │ │ │ ├── lv_example_slider_2.py │ │ │ │ ├── lv_example_slider_3.c │ │ │ │ └── lv_example_slider_3.py │ │ │ │ ├── span │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_span_1.c │ │ │ │ └── lv_example_span_1.py │ │ │ │ ├── spinbox │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_spinbox_1.c │ │ │ │ └── lv_example_spinbox_1.py │ │ │ │ ├── spinner │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_spinner_1.c │ │ │ │ └── lv_example_spinner_1.py │ │ │ │ ├── switch │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_switch_1.c │ │ │ │ └── lv_example_switch_1.py │ │ │ │ ├── table │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_table_1.c │ │ │ │ ├── lv_example_table_1.py │ │ │ │ ├── lv_example_table_2.c │ │ │ │ └── lv_example_table_2.py │ │ │ │ ├── tabview │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_tabview_1.c │ │ │ │ ├── lv_example_tabview_1.py │ │ │ │ ├── lv_example_tabview_2.c │ │ │ │ └── lv_example_tabview_2.py │ │ │ │ ├── textarea │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_textarea_1.c │ │ │ │ ├── lv_example_textarea_1.py │ │ │ │ ├── lv_example_textarea_2.c │ │ │ │ ├── lv_example_textarea_2.py │ │ │ │ ├── lv_example_textarea_3.c │ │ │ │ └── lv_example_textarea_3.py │ │ │ │ ├── tileview │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_tileview_1.c │ │ │ │ └── lv_example_tileview_1.py │ │ │ │ └── win │ │ │ │ ├── index.rst │ │ │ │ ├── lv_example_win_1.c │ │ │ │ └── lv_example_win_1.py │ │ ├── idf_component.yml │ │ ├── library.json │ │ ├── library.properties │ │ ├── lv_conf_template.h │ │ ├── lvgl.h │ │ ├── lvgl.mk │ │ ├── rt-thread │ │ │ ├── SConscript │ │ │ ├── lv_rt_thread_conf.h │ │ │ └── lv_rt_thread_port.c │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── build_html_examples.sh │ │ │ ├── built_in_font │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── FontAwesome5-Solid+Brands+Regular.woff │ │ │ │ ├── Montserrat-Medium.ttf │ │ │ │ ├── SimSun.woff │ │ │ │ ├── built_in_font_gen.py │ │ │ │ ├── generate_all.py │ │ │ │ └── unscii-8.ttf │ │ │ ├── code-format.cfg │ │ │ ├── code-format.sh │ │ │ ├── cppcheck_run.sh │ │ │ ├── filetohex.py │ │ │ ├── find_version.sh │ │ │ ├── genexamplelist.sh │ │ │ ├── infer_run.sh │ │ │ ├── install-prerequisites.sh │ │ │ ├── jpg_to_sjpg.py │ │ │ ├── lv_conf_internal_gen.py │ │ │ └── style_api_gen.py │ │ ├── src │ │ │ ├── core │ │ │ │ ├── lv_core.mk │ │ │ │ ├── lv_disp.c │ │ │ │ ├── lv_disp.h │ │ │ │ ├── lv_event.c │ │ │ │ ├── lv_event.h │ │ │ │ ├── lv_group.c │ │ │ │ ├── lv_group.h │ │ │ │ ├── lv_indev.c │ │ │ │ ├── lv_indev.h │ │ │ │ ├── lv_indev_scroll.c │ │ │ │ ├── lv_indev_scroll.h │ │ │ │ ├── lv_obj.c │ │ │ │ ├── lv_obj.h │ │ │ │ ├── lv_obj_class.c │ │ │ │ ├── lv_obj_class.h │ │ │ │ ├── lv_obj_draw.c │ │ │ │ ├── lv_obj_draw.h │ │ │ │ ├── lv_obj_pos.c │ │ │ │ ├── lv_obj_pos.h │ │ │ │ ├── lv_obj_scroll.c │ │ │ │ ├── lv_obj_scroll.h │ │ │ │ ├── lv_obj_style.c │ │ │ │ ├── lv_obj_style.h │ │ │ │ ├── lv_obj_style_gen.c │ │ │ │ ├── lv_obj_style_gen.h │ │ │ │ ├── lv_obj_tree.c │ │ │ │ ├── lv_obj_tree.h │ │ │ │ ├── lv_refr.c │ │ │ │ ├── lv_refr.h │ │ │ │ ├── lv_theme.c │ │ │ │ └── lv_theme.h │ │ │ ├── draw │ │ │ │ ├── lv_draw.h │ │ │ │ ├── lv_draw.mk │ │ │ │ ├── lv_draw_arc.c │ │ │ │ ├── lv_draw_arc.h │ │ │ │ ├── lv_draw_blend.c │ │ │ │ ├── lv_draw_blend.h │ │ │ │ ├── lv_draw_img.c │ │ │ │ ├── lv_draw_img.h │ │ │ │ ├── lv_draw_label.c │ │ │ │ ├── lv_draw_label.h │ │ │ │ ├── lv_draw_line.c │ │ │ │ ├── lv_draw_line.h │ │ │ │ ├── lv_draw_mask.c │ │ │ │ ├── lv_draw_mask.h │ │ │ │ ├── lv_draw_rect.c │ │ │ │ ├── lv_draw_rect.h │ │ │ │ ├── lv_draw_triangle.c │ │ │ │ ├── lv_draw_triangle.h │ │ │ │ ├── lv_img_buf.c │ │ │ │ ├── lv_img_buf.h │ │ │ │ ├── lv_img_cache.c │ │ │ │ ├── lv_img_cache.h │ │ │ │ ├── lv_img_decoder.c │ │ │ │ └── lv_img_decoder.h │ │ │ ├── extra │ │ │ │ ├── README.md │ │ │ │ ├── extra.mk │ │ │ │ ├── layouts │ │ │ │ │ ├── flex │ │ │ │ │ │ ├── lv_flex.c │ │ │ │ │ │ └── lv_flex.h │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── lv_grid.c │ │ │ │ │ │ └── lv_grid.h │ │ │ │ │ └── lv_layouts.h │ │ │ │ ├── libs │ │ │ │ │ ├── bmp │ │ │ │ │ │ ├── lv_bmp.c │ │ │ │ │ │ └── lv_bmp.h │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── arial.ttf │ │ │ │ │ │ ├── lv_freetype.c │ │ │ │ │ │ └── lv_freetype.h │ │ │ │ │ ├── fsdrv │ │ │ │ │ │ ├── lv_fs_fatfs.c │ │ │ │ │ │ ├── lv_fs_posix.c │ │ │ │ │ │ ├── lv_fs_stdio.c │ │ │ │ │ │ ├── lv_fs_win32.c │ │ │ │ │ │ └── lv_fsdrv.h │ │ │ │ │ ├── gif │ │ │ │ │ │ ├── gifdec.c │ │ │ │ │ │ ├── gifdec.h │ │ │ │ │ │ ├── lv_gif.c │ │ │ │ │ │ └── lv_gif.h │ │ │ │ │ ├── lv_libs.h │ │ │ │ │ ├── png │ │ │ │ │ │ ├── lodepng.c │ │ │ │ │ │ ├── lodepng.h │ │ │ │ │ │ ├── lv_png.c │ │ │ │ │ │ └── lv_png.h │ │ │ │ │ ├── qrcode │ │ │ │ │ │ ├── lv_qrcode.c │ │ │ │ │ │ ├── lv_qrcode.h │ │ │ │ │ │ ├── qrcodegen.c │ │ │ │ │ │ └── qrcodegen.h │ │ │ │ │ ├── rlottie │ │ │ │ │ │ ├── lv_rlottie.c │ │ │ │ │ │ └── lv_rlottie.h │ │ │ │ │ └── sjpg │ │ │ │ │ │ ├── lv_sjpg.c │ │ │ │ │ │ ├── lv_sjpg.h │ │ │ │ │ │ ├── tjpgd.c │ │ │ │ │ │ ├── tjpgd.h │ │ │ │ │ │ └── tjpgdcnf.h │ │ │ │ ├── lv_extra.c │ │ │ │ ├── lv_extra.h │ │ │ │ ├── others │ │ │ │ │ ├── lv_others.h │ │ │ │ │ └── snapshot │ │ │ │ │ │ ├── lv_snapshot.c │ │ │ │ │ │ └── lv_snapshot.h │ │ │ │ ├── themes │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── lv_theme_basic.c │ │ │ │ │ │ └── lv_theme_basic.h │ │ │ │ │ ├── default │ │ │ │ │ │ ├── lv_theme_default.c │ │ │ │ │ │ └── lv_theme_default.h │ │ │ │ │ ├── lv_themes.h │ │ │ │ │ └── mono │ │ │ │ │ │ ├── lv_theme_mono.c │ │ │ │ │ │ └── lv_theme_mono.h │ │ │ │ └── widgets │ │ │ │ │ ├── animimg │ │ │ │ │ ├── lv_animimg.c │ │ │ │ │ └── lv_animimg.h │ │ │ │ │ ├── calendar │ │ │ │ │ ├── lv_calendar.c │ │ │ │ │ ├── lv_calendar.h │ │ │ │ │ ├── lv_calendar_header_arrow.c │ │ │ │ │ ├── lv_calendar_header_arrow.h │ │ │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ │ │ └── lv_calendar_header_dropdown.h │ │ │ │ │ ├── chart │ │ │ │ │ ├── lv_chart.c │ │ │ │ │ └── lv_chart.h │ │ │ │ │ ├── colorwheel │ │ │ │ │ ├── lv_colorwheel.c │ │ │ │ │ └── lv_colorwheel.h │ │ │ │ │ ├── imgbtn │ │ │ │ │ ├── lv_imgbtn.c │ │ │ │ │ └── lv_imgbtn.h │ │ │ │ │ ├── keyboard │ │ │ │ │ ├── lv_keyboard.c │ │ │ │ │ └── lv_keyboard.h │ │ │ │ │ ├── led │ │ │ │ │ ├── lv_led.c │ │ │ │ │ └── lv_led.h │ │ │ │ │ ├── list │ │ │ │ │ ├── lv_list.c │ │ │ │ │ └── lv_list.h │ │ │ │ │ ├── lv_widgets.h │ │ │ │ │ ├── meter │ │ │ │ │ ├── lv_meter.c │ │ │ │ │ └── lv_meter.h │ │ │ │ │ ├── msgbox │ │ │ │ │ ├── lv_msgbox.c │ │ │ │ │ └── lv_msgbox.h │ │ │ │ │ ├── span │ │ │ │ │ ├── lv_span.c │ │ │ │ │ └── lv_span.h │ │ │ │ │ ├── spinbox │ │ │ │ │ ├── lv_spinbox.c │ │ │ │ │ └── lv_spinbox.h │ │ │ │ │ ├── spinner │ │ │ │ │ ├── lv_spinner.c │ │ │ │ │ └── lv_spinner.h │ │ │ │ │ ├── tabview │ │ │ │ │ ├── lv_tabview.c │ │ │ │ │ └── lv_tabview.h │ │ │ │ │ ├── tileview │ │ │ │ │ ├── lv_tileview.c │ │ │ │ │ └── lv_tileview.h │ │ │ │ │ └── win │ │ │ │ │ ├── lv_win.c │ │ │ │ │ └── lv_win.h │ │ │ ├── font │ │ │ │ ├── korean.ttf │ │ │ │ ├── lv_font.c │ │ │ │ ├── lv_font.h │ │ │ │ ├── lv_font.mk │ │ │ │ ├── lv_font_dejavu_16_persian_hebrew.c │ │ │ │ ├── lv_font_fmt_txt.c │ │ │ │ ├── lv_font_fmt_txt.h │ │ │ │ ├── lv_font_loader.c │ │ │ │ ├── lv_font_loader.h │ │ │ │ ├── lv_font_montserrat_10.c │ │ │ │ ├── lv_font_montserrat_12.c │ │ │ │ ├── lv_font_montserrat_12_subpx.c │ │ │ │ ├── lv_font_montserrat_14.c │ │ │ │ ├── lv_font_montserrat_16.c │ │ │ │ ├── lv_font_montserrat_18.c │ │ │ │ ├── lv_font_montserrat_20.c │ │ │ │ ├── lv_font_montserrat_22.c │ │ │ │ ├── lv_font_montserrat_24.c │ │ │ │ ├── lv_font_montserrat_26.c │ │ │ │ ├── lv_font_montserrat_28.c │ │ │ │ ├── lv_font_montserrat_28_compressed.c │ │ │ │ ├── lv_font_montserrat_30.c │ │ │ │ ├── lv_font_montserrat_32.c │ │ │ │ ├── lv_font_montserrat_34.c │ │ │ │ ├── lv_font_montserrat_36.c │ │ │ │ ├── lv_font_montserrat_38.c │ │ │ │ ├── lv_font_montserrat_40.c │ │ │ │ ├── lv_font_montserrat_42.c │ │ │ │ ├── lv_font_montserrat_44.c │ │ │ │ ├── lv_font_montserrat_46.c │ │ │ │ ├── lv_font_montserrat_48.c │ │ │ │ ├── lv_font_montserrat_8.c │ │ │ │ ├── lv_font_simsun_16_cjk.c │ │ │ │ ├── lv_font_unscii_16.c │ │ │ │ ├── lv_font_unscii_8.c │ │ │ │ └── lv_symbol_def.h │ │ │ ├── gpu │ │ │ │ ├── lv_gpu.mk │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ ├── lv_gpu_nxp_pxp_osa.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ ├── lv_gpu_nxp_vglite.h │ │ │ │ ├── lv_gpu_sdl.c │ │ │ │ ├── lv_gpu_sdl.h │ │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ │ ├── lv_gpu_stm32_dma2d.h │ │ │ │ └── sdl │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lv_gpu_sdl.mk │ │ │ │ │ ├── lv_gpu_sdl_draw_arc.c │ │ │ │ │ ├── lv_gpu_sdl_draw_blend.c │ │ │ │ │ ├── lv_gpu_sdl_draw_img.c │ │ │ │ │ ├── lv_gpu_sdl_draw_label.c │ │ │ │ │ ├── lv_gpu_sdl_draw_line.c │ │ │ │ │ ├── lv_gpu_sdl_draw_rect.c │ │ │ │ │ ├── lv_gpu_sdl_lru.c │ │ │ │ │ ├── lv_gpu_sdl_lru.h │ │ │ │ │ ├── lv_gpu_sdl_mask.c │ │ │ │ │ ├── lv_gpu_sdl_mask.h │ │ │ │ │ ├── lv_gpu_sdl_stack_blur.c │ │ │ │ │ ├── lv_gpu_sdl_stack_blur.h │ │ │ │ │ ├── lv_gpu_sdl_texture_cache.c │ │ │ │ │ ├── lv_gpu_sdl_texture_cache.h │ │ │ │ │ ├── lv_gpu_sdl_utils.c │ │ │ │ │ └── lv_gpu_sdl_utils.h │ │ │ ├── hal │ │ │ │ ├── lv_hal.h │ │ │ │ ├── lv_hal.mk │ │ │ │ ├── lv_hal_disp.c │ │ │ │ ├── lv_hal_disp.h │ │ │ │ ├── lv_hal_indev.c │ │ │ │ ├── lv_hal_indev.h │ │ │ │ ├── lv_hal_tick.c │ │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_api_map.h │ │ │ ├── lv_conf_internal.h │ │ │ ├── lv_conf_kconfig.h │ │ │ ├── lvgl.h │ │ │ ├── misc │ │ │ │ ├── lv_anim.c │ │ │ │ ├── lv_anim.h │ │ │ │ ├── lv_anim_timeline.c │ │ │ │ ├── lv_anim_timeline.h │ │ │ │ ├── lv_area.c │ │ │ │ ├── lv_area.h │ │ │ │ ├── lv_assert.h │ │ │ │ ├── lv_async.c │ │ │ │ ├── lv_async.h │ │ │ │ ├── lv_bidi.c │ │ │ │ ├── lv_bidi.h │ │ │ │ ├── lv_color.c │ │ │ │ ├── lv_color.h │ │ │ │ ├── lv_fs.c │ │ │ │ ├── lv_fs.h │ │ │ │ ├── lv_gc.c │ │ │ │ ├── lv_gc.h │ │ │ │ ├── lv_ll.c │ │ │ │ ├── lv_ll.h │ │ │ │ ├── lv_log.c │ │ │ │ ├── lv_log.h │ │ │ │ ├── lv_math.c │ │ │ │ ├── lv_math.h │ │ │ │ ├── lv_mem.c │ │ │ │ ├── lv_mem.h │ │ │ │ ├── lv_misc.mk │ │ │ │ ├── lv_printf.c │ │ │ │ ├── lv_printf.h │ │ │ │ ├── lv_style.c │ │ │ │ ├── lv_style.h │ │ │ │ ├── lv_style_gen.c │ │ │ │ ├── lv_style_gen.h │ │ │ │ ├── lv_templ.c │ │ │ │ ├── lv_templ.h │ │ │ │ ├── lv_timer.c │ │ │ │ ├── lv_timer.h │ │ │ │ ├── lv_tlsf.c │ │ │ │ ├── lv_tlsf.h │ │ │ │ ├── lv_txt.c │ │ │ │ ├── lv_txt.h │ │ │ │ ├── lv_txt_ap.c │ │ │ │ ├── lv_txt_ap.h │ │ │ │ ├── lv_types.h │ │ │ │ ├── lv_utils.c │ │ │ │ └── lv_utils.h │ │ │ └── widgets │ │ │ │ ├── lv_arc.c │ │ │ │ ├── lv_arc.h │ │ │ │ ├── lv_bar.c │ │ │ │ ├── lv_bar.h │ │ │ │ ├── lv_btn.c │ │ │ │ ├── lv_btn.h │ │ │ │ ├── lv_btnmatrix.c │ │ │ │ ├── lv_btnmatrix.h │ │ │ │ ├── lv_canvas.c │ │ │ │ ├── lv_canvas.h │ │ │ │ ├── lv_checkbox.c │ │ │ │ ├── lv_checkbox.h │ │ │ │ ├── lv_dropdown.c │ │ │ │ ├── lv_dropdown.h │ │ │ │ ├── lv_img.c │ │ │ │ ├── lv_img.h │ │ │ │ ├── lv_label.c │ │ │ │ ├── lv_label.h │ │ │ │ ├── lv_line.c │ │ │ │ ├── lv_line.h │ │ │ │ ├── lv_objx_templ.c │ │ │ │ ├── lv_objx_templ.h │ │ │ │ ├── lv_roller.c │ │ │ │ ├── lv_roller.h │ │ │ │ ├── lv_slider.c │ │ │ │ ├── lv_slider.h │ │ │ │ ├── lv_switch.c │ │ │ │ ├── lv_switch.h │ │ │ │ ├── lv_table.c │ │ │ │ ├── lv_table.h │ │ │ │ ├── lv_textarea.c │ │ │ │ ├── lv_textarea.h │ │ │ │ └── lv_widgets.mk │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── config.yml │ │ │ ├── main.py │ │ │ ├── ref_imgs │ │ │ │ ├── dropdown_1.png │ │ │ │ ├── dropdown_2.png │ │ │ │ └── scr1.png │ │ │ ├── src │ │ │ │ ├── lv_test_conf.h │ │ │ │ ├── lv_test_indev.c │ │ │ │ ├── lv_test_indev.h │ │ │ │ ├── lv_test_init.c │ │ │ │ ├── lv_test_init.h │ │ │ │ ├── test_cases │ │ │ │ │ ├── _test_template.c │ │ │ │ │ ├── test_arc.c │ │ │ │ │ ├── test_checkbox.c │ │ │ │ │ ├── test_config.c │ │ │ │ │ ├── test_dropdown.c │ │ │ │ │ ├── test_font_loader.c │ │ │ │ │ ├── test_obj_tree.c │ │ │ │ │ ├── test_style.c │ │ │ │ │ └── test_txt.c │ │ │ │ └── test_fonts │ │ │ │ │ ├── font_1.c │ │ │ │ │ ├── font_1.fnt │ │ │ │ │ ├── font_2.c │ │ │ │ │ ├── font_2.fnt │ │ │ │ │ ├── font_3.c │ │ │ │ │ └── font_3.fnt │ │ │ └── unity │ │ │ │ ├── generate_test_runner.rb │ │ │ │ ├── run_test.erb │ │ │ │ ├── type_sanitizer.rb │ │ │ │ ├── unity.c │ │ │ │ ├── unity.h │ │ │ │ ├── unity_internals.h │ │ │ │ ├── unity_support.c │ │ │ │ └── unity_support.h │ │ └── zephyr │ │ │ └── module.yml │ └── resource.h ├── README.md └── Screenshot.png ├── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── component.mk ├── controller │ ├── dialplate_controller.c │ └── dialplate_controller.h ├── hello_world_main.c └── ui │ ├── app_entity_def.h │ ├── app_page_factory.c │ ├── page │ ├── dialplate │ │ ├── dialplate.c │ │ ├── dialplate.h │ │ ├── dialplate_view.c │ │ └── dialplate_view.h │ ├── start_up │ │ ├── start_up.c │ │ ├── start_up.h │ │ ├── start_up_view.c │ │ └── start_up_view.h │ └── status_bar │ │ ├── status_bar.c │ │ └── status_bar.h │ ├── resource │ ├── font │ │ ├── font_agencyb_36.c │ │ ├── font_bahnschrift_13.c │ │ ├── font_bahnschrift_17.c │ │ ├── font_bahnschrift_32.c │ │ └── font_bahnschrift_65.c │ ├── img │ │ ├── img_src_alarm.c │ │ ├── img_src_battery.c │ │ ├── img_src_battery_info.c │ │ ├── img_src_bicycle.c │ │ ├── img_src_compass.c │ │ ├── img_src_gps_arrow_dark.c │ │ ├── img_src_gps_arrow_default.c │ │ ├── img_src_gps_arrow_light.c │ │ ├── img_src_gps_pin.c │ │ ├── img_src_gyroscope.c │ │ ├── img_src_locate.c │ │ ├── img_src_map_location.c │ │ ├── img_src_menu.c │ │ ├── img_src_origin_point.c │ │ ├── img_src_pause.c │ │ ├── img_src_satellite.c │ │ ├── img_src_sd_card.c │ │ ├── img_src_start.c │ │ ├── img_src_stop.c │ │ ├── img_src_storage.c │ │ ├── img_src_system_info.c │ │ ├── img_src_time_info.c │ │ └── img_src_trip.c │ ├── resource_pool.c │ └── resource_pool.h │ ├── ui_page_manager.c │ └── ui_page_manager.h ├── sdkconfig └── sdkconfig.old /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/README.md -------------------------------------------------------------------------------- /components/lv_examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lv_examples/CMakeLists.txt -------------------------------------------------------------------------------- /components/lv_examples/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lv_examples/Kconfig -------------------------------------------------------------------------------- /components/lv_examples/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lv_examples/component.mk -------------------------------------------------------------------------------- /components/lv_examples/lv_demo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lv_examples/lv_demo_conf.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/.editorconfig -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/.gitignore -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/CMakeLists.txt -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/CONTRIBUTE_CONTROLLER_SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/CONTRIBUTE_CONTROLLER_SUPPORT.md -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/Kconfig -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/LICENSE -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/README.md -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/component.mk -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_helpers.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_helpers.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_i2c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_i2c/Kconfig -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_i2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_i2c/README.md -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_i2c/i2c_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_i2c/i2c_manager.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_i2c/i2c_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_i2c/i2c_manager.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_spi_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_spi_conf.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/EVE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/EVE.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/EVE_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/EVE_commands.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/EVE_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/EVE_commands.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/EVE_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/EVE_config.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/FT81x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/FT81x.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/FT81x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/FT81x.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/GC9A01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/GC9A01.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/GC9A01.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/Kconfig -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/disp_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/disp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/esp_lcd_backlight.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/hx8357.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/hx8357.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/hx8357.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/hx8357.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/il3820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/il3820.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/il3820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/il3820.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9163c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9163c.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9163c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9163c.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9341.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9341.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9481.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9481.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9481.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9481.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9486.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9486.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9486.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9486.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9488.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9488.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ili9488.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ili9488.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/jd79653a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/jd79653a.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/jd79653a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/jd79653a.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ra8875.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ra8875.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ra8875.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ra8875.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/sh1107.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/sh1107.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/sh1107.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/sh1107.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ssd1306.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/ssd1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/ssd1306.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/st7735s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/st7735s.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/st7735s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/st7735s.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/st7789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/st7789.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/st7789.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/st7789.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/st7796s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/st7796s.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/st7796s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/st7796s.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/uc8151d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/uc8151d.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_tft/uc8151d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_tft/uc8151d.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/FT81x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/FT81x.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/FT81x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/FT81x.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/Kconfig -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/adcraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/adcraw.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/adcraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/adcraw.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/ft6x36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/gt911.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/gt911.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/gt911.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/gt911.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/ra8875_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/ra8875_touch.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/ra8875_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/ra8875_touch.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/stmpe610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/touch_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/tp_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.h -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c -------------------------------------------------------------------------------- /components/lvgl_esp32_drivers/lvgl_touch/xpt2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/.editorconfig -------------------------------------------------------------------------------- /lv_sim_visual_studio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/.gitignore -------------------------------------------------------------------------------- /lv_sim_visual_studio/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/.gitmodules -------------------------------------------------------------------------------- /lv_sim_visual_studio/BuildAllTargets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/BuildAllTargets.cmd -------------------------------------------------------------------------------- /lv_sim_visual_studio/BuildAllTargets.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/BuildAllTargets.proj -------------------------------------------------------------------------------- /lv_sim_visual_studio/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/Directory.Build.props -------------------------------------------------------------------------------- /lv_sim_visual_studio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LICENSE -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator.sln -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Core.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Core.vcxitems -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Core.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Core.vcxitems.filters -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Demonstrations.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Demonstrations.vcxitems -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Drivers.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Drivers.vcxitems -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Drivers.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Drivers.vcxitems.filters -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.cpp -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.manifest -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.rc -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.vcxproj -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.Simulator.vcxproj.filters -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/LVGL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/LVGL.ico -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/Mile.Project.Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/Mile.Project.Properties.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype.props -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/.clang-format -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/.gitignore -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/.gitlab-ci.yml -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/.gitmodules -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/.mailmap -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/CMakeLists.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/LICENSE.TXT -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/Makefile -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/README.git -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/autogen.sh -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/amiga/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/amiga/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/amiga/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/amiga/makefile -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/ansi/ansi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/ansi/ansi.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/atari/ATARI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/atari/ATARI.H -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/beos/beos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/beos/beos.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/beos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/beos/detect.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/detect.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/detect.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-def.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-emx.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-gcc.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-wat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/dos/dos-wat.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/exports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/exports.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/freetype.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/link_dos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/link_dos.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/link_std.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/link_std.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/mac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/mac/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/mac/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/mac/ftmac.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/modules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/detect.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/os2-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/os2-def.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/os2-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/os2-dev.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/os2-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/os2/os2-gcc.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/toplevel.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/unix/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/unix/detect.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/unix/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/unix/pkg.m4 -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/unix/unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/unix/unix.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/vms/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/vms/ftconfig.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/vms/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/vms/ftsystem.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/builds/vms/vmslib.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/builds/vms/vmslib.dat -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/configure -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/devel/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/devel/ft2build.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/devel/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/devel/ftoption.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/.gitignore -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/CHANGES -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/CMAKE -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/CUSTOMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/CUSTOMIZE -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/DEBUG -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/DOCGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/DOCGUIDE -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/FTL.TXT -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/GPLv2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/GPLv2.TXT -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.ANY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.ANY -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.CROSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.CROSS -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.GNU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.GNU -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.MAC -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.UNIX -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/INSTALL.VMS -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/MAKEPP -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/PROBLEMS -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/TODO -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/VERSIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/VERSIONS.TXT -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/formats.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/raster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/raster.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/docs/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/docs/release -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/include/ft2build.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/meson.build -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/meson_options.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/modules.cfg -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/objs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !README 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/objs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/objs/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afblue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afblue.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afblue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afblue.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afcjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afcjk.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afcjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afcjk.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afcover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afcover.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afdummy.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afdummy.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afhints.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afhints.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afindic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afindic.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afindic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/afindic.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/aflatin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/aflatin.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/aflatin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/aflatin.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/aftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/aftypes.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/autofit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/autofit.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/autofit/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftadvanc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftadvanc.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbase.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbase.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbbox.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbdf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftbitmap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftcalc.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftcid.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftcolor.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftdbgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftdbgmem.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftdebug.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fterrors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fterrors.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftfntfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftfntfmt.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftfstype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftfstype.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftgasp.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftgloadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftgloadr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftglyph.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftgxval.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fthash.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftinit.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftlcdfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftlcdfil.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftmac.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftmm.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftobjs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftotval.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftoutln.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftpatent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftpatent.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftpfr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftpsprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftpsprop.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftrfork.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftsnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftsnames.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftstream.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftstroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftstroke.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftsynth.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftsystem.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fttrigon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fttrigon.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/fttype1.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftutil.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftver.rc -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftwinfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/ftwinfnt.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/md5.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/md5.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/base/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdferror.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/bdflib.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bdf/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bzip2/ftbzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bzip2/ftbzip2.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/bzip2/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcache.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcbasic.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccache.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccache.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccback.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftccmap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcerror.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcglyph.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcglyph.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcimage.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcimage.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmanag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmanag.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmanag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmanag.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmru.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcmru.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcsbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcsbits.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcsbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/ftcsbits.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cache/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cff.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffcmap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffcmap.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cfferrs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffgload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffgload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffobjs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffobjs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffparse.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cffparse.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/cfftoken.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cff/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/ciderrs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidgload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidgload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidobjs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidobjs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidparse.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidparse.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidriver.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidriver.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/cidtoken.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/cid/type1cid.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/dlg/dlgwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/dlg/dlgwrap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/dlg/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/dlg/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvalid.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvalid.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvbsln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvbsln.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvfeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvfeat.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvfeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvfeat.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvfgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvfgen.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvjust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvjust.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvkern.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvlcar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvlcar.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmod.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmod.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmort.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmort.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmorx.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmorx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvmorx.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvopbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvopbd.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvprop.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvtrak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/gxvtrak.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gxvalid/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/adler32.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/ftzconf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infblock.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infblock.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infcodes.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infcodes.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inffixed.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inflate.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inftrees.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/inftrees.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infutil.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/infutil.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/zlib.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/zutil.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/gzip/zutil.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/lzw/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/README -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcferror.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfread.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfread.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfutil.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/pcfutil.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pcf/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrcmap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrcmap.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrerror.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrgload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrgload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrobjs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrobjs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrsbit.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrsbit.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/pfrtypes.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/pfr/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psaux.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psconv.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psconv.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psfont.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psfont.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psft.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psft.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psglue.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psobjs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psobjs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psread.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/psread.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/t1cmap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/psaux/t1cmap.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/ftbsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/ftbsdf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/ftsdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/ftsdf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/ftsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/ftsdf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/sdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sdf/sdf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/module.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/pngshim.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/pngshim.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff2.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/sfwoff2.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcolr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcolr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcolr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcolr.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcpal.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttcpal.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttkern.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttkern.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttload.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttload.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttpost.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttpost.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttsbit.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/sfnt/ttsbit.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/rules.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1afm.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1afm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1afm.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1load.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1load.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1objs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/t1objs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/src/type1/type1.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/tests/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/tests/meson.build -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/freetype/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/freetype/vms_make.com -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_conf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demo_conf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/.github/stale.yml -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o 2 | objs 3 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/CMakeLists.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/docs/LICENSE.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/library.properties -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/lv_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/lv_demo.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/lv_demo.mk: -------------------------------------------------------------------------------- 1 | CSRCS += $(shell find -L $(LVGL_DIR)/lv_demos -name "*.c") 2 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/src/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/src/header.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_demos/src/lv_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_demos/src/lv_demo.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/.gitignore -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/CMakeLists.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/LICENSE -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/GC9A01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/GC9A01.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/GC9A01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/GC9A01.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/R61581.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/R61581.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/R61581.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/R61581.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/ST7565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/ST7565.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/ST7565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/ST7565.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/UC1610.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/UC1610.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/UC1610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/UC1610.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/drm.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/drm.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/fbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/fbdev.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/fbdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/display/fbdev.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/docs/astyle_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/docs/astyle_c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/docs/astyle_h: -------------------------------------------------------------------------------- 1 | --convert-tabs --indent=spaces=4 2 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/gtkdrv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/gtkdrv/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/gtkdrv/gtkdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/gtkdrv/gtkdrv.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/gtkdrv/gtkdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/gtkdrv/gtkdrv.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/AD_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/AD_touch.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/AD_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/AD_touch.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/XPT2046.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/XPT2046.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/XPT2046.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/XPT2046.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/evdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/evdev.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/evdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/evdev.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/keyboard.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/libinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/libinput.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/mouse.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/xkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/xkb.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/xkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/indev/xkb.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/library.json -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/lv_drivers.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/lv_drivers.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl_gpu.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/sdl/sdl_gpu.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/win_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/win_drv.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drivers/win_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drivers/win_drv.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lv_drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lv_drv_conf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/.codecov.yml -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/.editorconfig -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: lvgl 2 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/.gitignore -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/Kconfig -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/SConscript -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/component.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/CHANGELOG.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/ROADMAP.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/build.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/conf.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/example_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/example_list.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/favicon.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/header.rst -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/intro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/intro/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/layouts/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/layouts/flex.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/layouts/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/layouts/grid.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/layouts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/layouts/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/bmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/bmp.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/freetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/freetype.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/fsdrv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/fsdrv.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/gif.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/png.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/qrcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/qrcode.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/rlottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/rlottie.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/sjpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/libs/sjpg.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/logo_lvgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/logo_lvgl.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/align.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/bidi.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/boxmodel.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/eclipse.jpg -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/layers.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/symbols.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/misc/sys.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/others/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/others/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/color.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/event.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/font.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/image.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/indev.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/layer.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/style.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/timer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/overview/timer.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/indev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/indev.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/log.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/os.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/sleep.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/tick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/porting/tick.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/requirements.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/widgets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/widgets/index.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/widgets/obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/docs/widgets/obj.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/assets/img_star.png: -------------------------------------------------------------------------------- 1 | star.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/assets/img_strip.png: -------------------------------------------------------------------------------- 1 | skew_strip.png -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/examples.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/header.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/lv_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/lv_examples.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/test_ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/examples/test_ex.sh -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/idf_component.yml -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/library.json -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/library.properties -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/lvgl.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/lvgl.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/rt-thread/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/rt-thread/SConscript -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/code-format.sh: -------------------------------------------------------------------------------- 1 | astyle --options=code-format.cfg "../src/*.c,*.h" 2 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/filetohex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/filetohex.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/infer_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/infer_run.sh -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/jpg_to_sjpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/scripts/jpg_to_sjpg.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_core.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_disp.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_disp.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_event.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_event.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_group.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_group.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_indev.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_indev.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_draw.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_draw.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_pos.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_pos.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_tree.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_obj_tree.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_refr.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_refr.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_theme.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/core/lv_theme.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_arc.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_arc.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_img.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_draw_img.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_img_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_img_buf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_img_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/draw/lv_img_buf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/extra.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/lv_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/lv_extra.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/lv_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/extra/lv_extra.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/korean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/korean.ttf -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/lv_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/lv_font.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/lv_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/lv_font.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/lv_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/font/lv_font.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/lv_gpu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/lv_gpu.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/lv_gpu_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/lv_gpu_sdl.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/lv_gpu_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/lv_gpu_sdl.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/sdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/gpu/sdl/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_disp.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_disp.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_indev.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_indev.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_tick.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/hal/lv_hal_tick.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lv_conf_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lv_conf_internal.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lv_conf_kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lv_conf_kconfig.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_anim.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_anim.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_area.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_area.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_assert.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_async.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_async.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_bidi.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_bidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_bidi.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_color.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_color.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_math.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_math.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_misc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_misc.mk -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_printf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_printf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_style.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_style.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_templ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_templ.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_templ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_templ.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_timer.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_timer.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_tlsf.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_tlsf.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt_ap.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_txt_ap.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_types.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_utils.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/misc/lv_utils.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_arc.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_arc.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_bar.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_bar.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_btn.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_btn.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_img.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_img.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_label.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_label.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_line.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_line.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_table.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/src/widgets/lv_table.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/config.yml -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/main.py -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/unity/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/unity/unity.c -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/unity/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/lvgl/tests/unity/unity.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/lvgl/zephyr/module.yml: -------------------------------------------------------------------------------- 1 | build: 2 | cmake: . 3 | -------------------------------------------------------------------------------- /lv_sim_visual_studio/LVGL.Simulator/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/LVGL.Simulator/resource.h -------------------------------------------------------------------------------- /lv_sim_visual_studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/README.md -------------------------------------------------------------------------------- /lv_sim_visual_studio/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/lv_sim_visual_studio/Screenshot.png -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/controller/dialplate_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/controller/dialplate_controller.c -------------------------------------------------------------------------------- /main/controller/dialplate_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/controller/dialplate_controller.h -------------------------------------------------------------------------------- /main/hello_world_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/hello_world_main.c -------------------------------------------------------------------------------- /main/ui/app_entity_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/app_entity_def.h -------------------------------------------------------------------------------- /main/ui/app_page_factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/app_page_factory.c -------------------------------------------------------------------------------- /main/ui/page/dialplate/dialplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/dialplate/dialplate.c -------------------------------------------------------------------------------- /main/ui/page/dialplate/dialplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/dialplate/dialplate.h -------------------------------------------------------------------------------- /main/ui/page/dialplate/dialplate_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/dialplate/dialplate_view.c -------------------------------------------------------------------------------- /main/ui/page/dialplate/dialplate_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/dialplate/dialplate_view.h -------------------------------------------------------------------------------- /main/ui/page/start_up/start_up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/start_up/start_up.c -------------------------------------------------------------------------------- /main/ui/page/start_up/start_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/start_up/start_up.h -------------------------------------------------------------------------------- /main/ui/page/start_up/start_up_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/start_up/start_up_view.c -------------------------------------------------------------------------------- /main/ui/page/start_up/start_up_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/start_up/start_up_view.h -------------------------------------------------------------------------------- /main/ui/page/status_bar/status_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/status_bar/status_bar.c -------------------------------------------------------------------------------- /main/ui/page/status_bar/status_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/page/status_bar/status_bar.h -------------------------------------------------------------------------------- /main/ui/resource/font/font_agencyb_36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/font/font_agencyb_36.c -------------------------------------------------------------------------------- /main/ui/resource/font/font_bahnschrift_13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/font/font_bahnschrift_13.c -------------------------------------------------------------------------------- /main/ui/resource/font/font_bahnschrift_17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/font/font_bahnschrift_17.c -------------------------------------------------------------------------------- /main/ui/resource/font/font_bahnschrift_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/font/font_bahnschrift_32.c -------------------------------------------------------------------------------- /main/ui/resource/font/font_bahnschrift_65.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/font/font_bahnschrift_65.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_alarm.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_battery.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_battery_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_battery_info.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_bicycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_bicycle.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_compass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_compass.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_gps_arrow_dark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_gps_arrow_dark.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_gps_arrow_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_gps_arrow_default.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_gps_arrow_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_gps_arrow_light.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_gps_pin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_gps_pin.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_gyroscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_gyroscope.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_locate.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_map_location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_map_location.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_menu.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_origin_point.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_origin_point.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_pause.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_satellite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_satellite.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_sd_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_sd_card.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_start.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_stop.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_storage.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_system_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_system_info.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_time_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_time_info.c -------------------------------------------------------------------------------- /main/ui/resource/img/img_src_trip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/img/img_src_trip.c -------------------------------------------------------------------------------- /main/ui/resource/resource_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/resource_pool.c -------------------------------------------------------------------------------- /main/ui/resource/resource_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/resource/resource_pool.h -------------------------------------------------------------------------------- /main/ui/ui_page_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/ui_page_manager.c -------------------------------------------------------------------------------- /main/ui/ui_page_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/main/ui/ui_page_manager.h -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzx8589561/X-UI/HEAD/sdkconfig.old --------------------------------------------------------------------------------