chore(cmsis-pack): monthly update for december (#3872)

This commit is contained in:
Gabriel Wang
2022-12-20 15:10:13 +08:00
committed by GitHub
parent ecafa88d2c
commit 76318ba2e2
5 changed files with 110 additions and 36 deletions

View File

@@ -36,7 +36,13 @@
<repository type="git">https://github.com/lvgl/lvgl.git</repository>
<releases>
<release date="2022-11-28" version="1.0.11" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.1.0.11.pack">
<release date="2022-12-18" version="1.0.12-alpha" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.1.0.12-alpha.pack">
- LVGL 9.0.0-dev
- Montyly update for December
- Fix ARM2D Transform Support
- Add Barcode
</release>
<release date="2022-11-28" version="1.0.11" url="https://github.com/lvgl/lvgl/raw/f433ed62248cafd915848ff4d0720f97fb0fc7fd/env_support/cmsis-pack/LVGL.lvgl.1.0.11.pack">
- LVGL 9.0.0-dev
- Montyly update for November
</release>
@@ -401,7 +407,7 @@
<file category="sourceC" name="src/themes/default/lv_theme_default.c" />
<!-- general -->
<file category="preIncludeGlobal" name="lv_conf_cmsis.h" attr="config" version="1.1.5" />
<file category="preIncludeGlobal" name="lv_conf_cmsis.h" attr="config" version="1.1.6" />
<file category="sourceC" name="lv_cmsis_pack.c" attr="config" version="1.0.0" />
<file category="header" name="lvgl.h" />
<file category="doc" name="README.md"/>
@@ -437,7 +443,7 @@
</files>
</component>
<component Cgroup="lvgl" Csub="GPU Arm-2D" condition="LVGL-Essential" Cversion="1.1.0">
<component Cgroup="lvgl" Csub="GPU Arm-2D" condition="LVGL-Essential" Cversion="1.2.0">
<description>A 2D image processing library from Arm (i.e. Arm-2D) for All Cortex-M processors including Cortex-M0</description>
<files>
<file category="sourceC" name="src/draw/arm2d/lv_gpu_arm2d.c" condition="Arm-2D"/>
@@ -629,6 +635,22 @@
</component>
<component Cgroup="lvgl" Csub="Libs Barcode" condition="LVGL-Essential">
<description>Add BMP support</description>
<files>
<!-- src/libs/barcode -->
<file category="sourceC" name="src/libs/barcode/lv_barcode.c" />
<file category="sourceC" name="src/libs/barcode/code128.c" />
</files>
<RTE_Components_h>
/*! \brief enable Barcode support */
#define LV_USE_BARCODE 1
</RTE_Components_h>
</component>
<component Cgroup="lvgl" Csub="Libs freetype" condition="LVGL-Essential">
<description>Add freetype support, an extra librbary is required.</description>
<files>

View File

@@ -2,8 +2,8 @@
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
<vendor>LVGL</vendor>
<url>https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/</url>
<timestamp>2022-11-28T21:03:00</timestamp>
<timestamp>2022-12-18T21:03:00</timestamp>
<pindex>
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="1.0.11"/>
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="1.0.12-alpha"/>
</pindex>
</index>

View File

@@ -235,6 +235,7 @@
#define LV_LOG_TRACE_OBJ_CREATE 1
#define LV_LOG_TRACE_LAYOUT 1
#define LV_LOG_TRACE_ANIM 1
#define LV_LOG_TRACE_MSG 1
#endif /*LV_USE_LOG*/