cmsis pack monthly update for Aug (#3640)
This commit is contained in:
Binary file not shown.
@@ -36,8 +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="2022-08-15" version="1.0.8-alpha1" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.1.0.8-alpha1.pack">
|
<release date="2022-08-30" version="1.0.8" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.1.0.8.pack">
|
||||||
- LVGL 9.0.0-dev
|
- LVGL 9.0.0-dev
|
||||||
|
- Add the binding for pikascript (an ultra-light-weight python VM)
|
||||||
- Montyly update for August
|
- Montyly update for August
|
||||||
</release>
|
</release>
|
||||||
<release date="2022-07-29" version="1.0.7" url="https://github.com/lvgl/lvgl/raw/b454a66e0be85976385c81cf9c9025f272a66f5d/env_support/cmsis-pack/LVGL.lvgl.1.0.7.pack">
|
<release date="2022-07-29" version="1.0.7" url="https://github.com/lvgl/lvgl/raw/b454a66e0be85976385c81cf9c9025f272a66f5d/env_support/cmsis-pack/LVGL.lvgl.1.0.7.pack">
|
||||||
@@ -565,6 +566,32 @@
|
|||||||
|
|
||||||
</component>
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="PikaScript Binding" Cversion="0.2.0" condition="LVGL-Essential">
|
||||||
|
<description>Add the binding for PikaScript, an ultra-light-weight python VM.</description>
|
||||||
|
<files>
|
||||||
|
<file category="doc" name="pikascript/README.md"/>
|
||||||
|
<file category="sourceC" name="pikascript/pika_lvgl.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lvgl_indev_t.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lvgl_lv_event.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lvgl_lv_obj.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lvgl_lv_style_t.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lv_point_t.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lv_timer_t.c" />
|
||||||
|
<file category="sourceC" name="pikascript/pika_lv_wegit.c" />
|
||||||
|
</files>
|
||||||
|
<Pre_Include_Local_Component_h>
|
||||||
|
|
||||||
|
/* enabling PikaScript Binding */
|
||||||
|
#define PIKASCRIPT 1
|
||||||
|
</Pre_Include_Local_Component_h>
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable PikaScrit Binding */
|
||||||
|
#define LV_USE_PIKASCRIPT_BINDING 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
<component Cgroup="lvgl" Csub="Libs PNG" condition="LVGL-Essential">
|
<component Cgroup="lvgl" Csub="Libs PNG" condition="LVGL-Essential">
|
||||||
<description>Add PNG support</description>
|
<description>Add PNG support</description>
|
||||||
<files>
|
<files>
|
||||||
|
|||||||
@@ -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>2022-08-15T00:18:52</timestamp>
|
<timestamp>2022-08-30T00:15:09</timestamp>
|
||||||
<pindex>
|
<pindex>
|
||||||
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="1.0.8-alpha1"/>
|
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="1.0.8"/>
|
||||||
</pindex>
|
</pindex>
|
||||||
</index>
|
</index>
|
||||||
@@ -46,6 +46,7 @@ PACK_DIRS="
|
|||||||
../../src
|
../../src
|
||||||
../../docs
|
../../docs
|
||||||
../../demos
|
../../demos
|
||||||
|
../../env_support/pikascript
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -214,6 +214,10 @@
|
|||||||
*0: User need to register a callback with `lv_log_register_print_cb()`*/
|
*0: User need to register a callback with `lv_log_register_print_cb()`*/
|
||||||
#define LV_LOG_PRINTF 0
|
#define LV_LOG_PRINTF 0
|
||||||
|
|
||||||
|
/*1: Enable print timestamp;
|
||||||
|
*0: Disable print timestamp*/
|
||||||
|
#define LV_LOG_USE_TIMESTAMP 1
|
||||||
|
|
||||||
/*Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs*/
|
/*Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs*/
|
||||||
#define LV_LOG_TRACE_MEM 1
|
#define LV_LOG_TRACE_MEM 1
|
||||||
#define LV_LOG_TRACE_TIMER 1
|
#define LV_LOG_TRACE_TIMER 1
|
||||||
@@ -499,9 +503,6 @@
|
|||||||
#define LV_USE_MSGBOX 1
|
#define LV_USE_MSGBOX 1
|
||||||
|
|
||||||
#define LV_USE_ROLLER 1 /*Requires: lv_label*/
|
#define LV_USE_ROLLER 1 /*Requires: lv_label*/
|
||||||
#if LV_USE_ROLLER
|
|
||||||
#define LV_ROLLER_INF_PAGES 7 /*Number of extra "pages" when the roller is infinite*/
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define LV_USE_SLIDER 1 /*Requires: lv_bar*/
|
#define LV_USE_SLIDER 1 /*Requires: lv_bar*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user