chore(cmsis-pack): minor update (#5948)
This commit is contained in:
@@ -20,8 +20,9 @@ How to Use
|
|||||||
**********
|
**********
|
||||||
|
|
||||||
In general:
|
In general:
|
||||||
- you can set the macro :c:macro:`LV_USE_DRAW_ARM2D_SYNC` to ``1`` in
|
- you can set the macro :c:macro:`LV_USE_DRAW_ARM2D_SYNC` to ``1`` and
|
||||||
``lv_conf.h`` to enable Arm-2D synchronous acceleration for LVGL.
|
:c:macro:`LV_DRAW_SW_ASM` to ``LV_DRAW_SW_ASM_HELIUM`` in ``lv_conf.h`` to
|
||||||
|
enable Arm-2D synchronous acceleration for LVGL.
|
||||||
- You can set
|
- You can set
|
||||||
the macro :c:macro:`LV_USE_DRAW_ARM2D_ASYNC` to ``1`` in ``lv_conf.h`` to enable
|
the macro :c:macro:`LV_USE_DRAW_ARM2D_ASYNC` to ``1`` in ``lv_conf.h`` to enable
|
||||||
Arm-2D Asynchronous acceleration for LVGL.
|
Arm-2D Asynchronous acceleration for LVGL.
|
||||||
|
|||||||
Binary file not shown.
@@ -36,6 +36,9 @@
|
|||||||
<repository type="git">https://github.com/lvgl/lvgl.git</repository>
|
<repository type="git">https://github.com/lvgl/lvgl.git</repository>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
|
<release date="2024-03-24" version="9.1.1-dev1" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.9.1.1-dev1.pack">
|
||||||
|
- LVGL 9.1.1-dev
|
||||||
|
</release>
|
||||||
<release date="2024-03-19" version="9.1.0" url="https://github.com/lvgl/lvgl/raw/v9.1.0/env_support/cmsis-pack/LVGL.lvgl.9.1.0.pack">
|
<release date="2024-03-19" version="9.1.0" url="https://github.com/lvgl/lvgl/raw/v9.1.0/env_support/cmsis-pack/LVGL.lvgl.9.1.0.pack">
|
||||||
- LVGL 9.1.0
|
- LVGL 9.1.0
|
||||||
- See Change Log
|
- See Change Log
|
||||||
@@ -1295,6 +1298,21 @@
|
|||||||
|
|
||||||
</component>
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="Libraries and Others" Csub="Lib Filesystem" Cvariant="Arduino LittleFs" condition="LVGL-Essential">
|
||||||
|
<description>Add API for file access via Arduino LittleFs</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/libs/fsdrv -->
|
||||||
|
<file category="sourceCpp" name="src/libs/fsdrv/lv_fs_arduino_esp_littlefs.cpp" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable Arduino LittleFs file access */
|
||||||
|
#define LV_USE_FS_ARDUINO_ESP_LITTLEFS 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
<component Cgroup="Libraries and Others" Csub="Lib Filesystem" Cvariant="WIN32" condition="LVGL-Essential">
|
<component Cgroup="Libraries and Others" Csub="Lib Filesystem" Cvariant="WIN32" condition="LVGL-Essential">
|
||||||
<description>Add API for file access via STDIO</description>
|
<description>Add API for file access via STDIO</description>
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
|
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<vendor>LVGL</vendor>
|
<vendor>LVGL</vendor>
|
||||||
<url>https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/</url>
|
<url>https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/</url>
|
||||||
<timestamp>2024-03-19</timestamp>
|
<timestamp>2024-03-24</timestamp>
|
||||||
<pindex>
|
<pindex>
|
||||||
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="9.1.0"/>
|
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="9.1.1-dev1"/>
|
||||||
</pindex>
|
</pindex>
|
||||||
</index>
|
</index>
|
||||||
|
|||||||
@@ -126,6 +126,7 @@ Make sure `LV_MEM_SIZE` is no less than `(128*1024U)`.
|
|||||||
- \#define LV_USE_FS_WIN32 0
|
- \#define LV_USE_FS_WIN32 0
|
||||||
- \#define LV_USE_FS_FATFS 0
|
- \#define LV_USE_FS_FATFS 0
|
||||||
- #define LV_USE_FS_LITTLEFS 0
|
- #define LV_USE_FS_LITTLEFS 0
|
||||||
|
- #define LV_USE_FS_ARDUINO_ESP_LITTLEFS 0
|
||||||
- #define LV_USE_FS_MEMFS 0
|
- #define LV_USE_FS_MEMFS 0
|
||||||
- \#define LV_USE_LODEPNG 0
|
- \#define LV_USE_LODEPNG 0
|
||||||
- #define LV_USE_LIBPNG 0
|
- #define LV_USE_LIBPNG 0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* @file lv_conf.h
|
* @file lv_conf.h
|
||||||
* Configuration file for v9.1.0
|
* Configuration file for v9.1.1-dev
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* clang-format off */
|
/* clang-format off */
|
||||||
@@ -148,6 +148,9 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Set stack size of drawing thread. Unit is byte. If Thorvg is enabled, 128kB is required tested on simulator.*/
|
||||||
|
#define LV_DRAW_THREAD_STACKSIZE 32768
|
||||||
|
|
||||||
#if LV_USE_DRAW_VGLITE
|
#if LV_USE_DRAW_VGLITE
|
||||||
/* Enable blit quality degradation workaround recommended for screen's dimension > 352 pixels. */
|
/* Enable blit quality degradation workaround recommended for screen's dimension > 352 pixels. */
|
||||||
#define LV_USE_VGLITE_BLIT_SPLIT 0
|
#define LV_USE_VGLITE_BLIT_SPLIT 0
|
||||||
@@ -648,6 +651,11 @@
|
|||||||
#define LV_FS_LITTLEFS_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
#define LV_FS_LITTLEFS_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*API for Arduino LittleFs. */
|
||||||
|
#if LV_USE_FS_ARDUINO_ESP_LITTLEFS
|
||||||
|
#define LV_FS_ARDUINO_ESP_LITTLEFS_LETTER '\0' /*Set an upper cased letter on which the drive will accessible (e.g. 'A')*/
|
||||||
|
#endif
|
||||||
|
|
||||||
/*GIF decoder library*/
|
/*GIF decoder library*/
|
||||||
#if LV_USE_GIF
|
#if LV_USE_GIF
|
||||||
/*GIF decoder accelerate*/
|
/*GIF decoder accelerate*/
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* @file lv_conf.h
|
* @file lv_conf.h
|
||||||
* Configuration file for v9.1.0
|
* Configuration file for v9.1.1-dev
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
4
lvgl.h
4
lvgl.h
@@ -15,8 +15,8 @@ extern "C" {
|
|||||||
***************************/
|
***************************/
|
||||||
#define LVGL_VERSION_MAJOR 9
|
#define LVGL_VERSION_MAJOR 9
|
||||||
#define LVGL_VERSION_MINOR 1
|
#define LVGL_VERSION_MINOR 1
|
||||||
#define LVGL_VERSION_PATCH 0
|
#define LVGL_VERSION_PATCH 1
|
||||||
#define LVGL_VERSION_INFO ""
|
#define LVGL_VERSION_INFO "dev"
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
* INCLUDES
|
* INCLUDES
|
||||||
|
|||||||
Reference in New Issue
Block a user