From 91f250d4d232cc4b48623547b4921fb9aa9fe302 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 15 Nov 2018 00:17:12 +0100 Subject: [PATCH 1/4] lv_conf.h minor formatting --- lv_conf_templ.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_conf_templ.h b/lv_conf_templ.h index 9a809c3cc..b3d9eb4a5 100644 --- a/lv_conf_templ.h +++ b/lv_conf_templ.h @@ -43,8 +43,8 @@ * VDB makes the double buffering, you don't need to deal with it! * Typical size: ~1/10 screen */ #define LV_VDB_SIZE (30 * LV_HOR_RES) /*Size of VDB in pixel count (1/10 screen size is good for first)*/ -#define LV_VDB_PX_BPP LV_COLOR_SIZE /*Bit-per-pixel of VDB. Useful for monochrome or non-standard color format displays. (Special formats are handles with `disp_drv->vdb_wr`)*/ -#define LV_VDB_ADR 0 /*Place VDB to a specific address (e.g. in external RAM) (0: allocate automatically into RAM; LV_VDB_ADR_INV: to replace it later with `lv_vdb_set_adr()`)*/ +#define LV_VDB_PX_BPP LV_COLOR_SIZE /*Bit-per-pixel of VDB. Useful for monochrome or non-standard color format displays. (Special formats are handled with `disp_drv->vdb_wr`)*/ +#define LV_VDB_ADR 0 /*Place VDB to a specific address (e.g. in external RAM) (0: allocate automatically into RAM; LV_VDB_ADR_INV: to replace it later with `lv_vdb_set_adr()`)*/ /* Use two Virtual Display buffers (VDB) parallelize rendering and flushing (optional) * The flushing should use DMA to write the frame buffer in the background*/ From 4cbd8ea8c9f34a57fcb9f7a2ddda703fc74fa35c Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 15 Nov 2018 00:18:45 +0100 Subject: [PATCH 2/4] release v5.3 --- lvgl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lvgl.h b/lvgl.h index 6e74d53fa..3f3084c81 100644 --- a/lvgl.h +++ b/lvgl.h @@ -61,9 +61,9 @@ extern "C" { *********************/ /*Current version of LittlevGL*/ #define LVGL_VERSION_MAJOR 5 -#define LVGL_VERSION_MINOR 2 +#define LVGL_VERSION_MINOR 3 #define LVGL_VERSION_PATCH 0 -#define LVGL_VERSION_INFO "rc" +#define LVGL_VERSION_INFO "" /********************** * TYPEDEFS From a9a55321c7fe5159834f417aaff92117a85dddcd Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 15 Nov 2018 00:21:09 +0100 Subject: [PATCH 3/4] fix version number: release v5.2 --- lvgl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lvgl.h b/lvgl.h index 3f3084c81..dbedb4f68 100644 --- a/lvgl.h +++ b/lvgl.h @@ -61,7 +61,7 @@ extern "C" { *********************/ /*Current version of LittlevGL*/ #define LVGL_VERSION_MAJOR 5 -#define LVGL_VERSION_MINOR 3 +#define LVGL_VERSION_MINOR 2 #define LVGL_VERSION_PATCH 0 #define LVGL_VERSION_INFO "" From 7528e2a9b2282078d185465ada6e002594e40c7a Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 15 Nov 2018 00:30:42 +0100 Subject: [PATCH 4/4] start v5.2.1-dev --- lvgl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lvgl.h b/lvgl.h index dbedb4f68..8918a55f7 100644 --- a/lvgl.h +++ b/lvgl.h @@ -62,8 +62,8 @@ extern "C" { /*Current version of LittlevGL*/ #define LVGL_VERSION_MAJOR 5 #define LVGL_VERSION_MINOR 2 -#define LVGL_VERSION_PATCH 0 -#define LVGL_VERSION_INFO "" +#define LVGL_VERSION_PATCH 1 +#define LVGL_VERSION_INFO "dev" /********************** * TYPEDEFS