summaryrefslogtreecommitdiffstats
path: root/lv_conf.h
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijaykumar9597@gmail.com>2019-08-30 00:44:53 +0530
committerVijay Kumar Banerjee <vijaykumar9597@gmail.com>2019-08-30 00:44:53 +0530
commit683015a9ace386e710a1d5c66fe71d29090681c6 (patch)
treebbcaaaa0012f4a53070fae225dc45239605aaec3 /lv_conf.h
parentlvgl.py: Add waf builder for lvgl (diff)
downloadrtems-littlevgl-683015a9ace386e710a1d5c66fe71d29090681c6.tar.bz2
lvgl.py: fix include paths in build
Diffstat (limited to 'lv_conf.h')
-rw-r--r--lv_conf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lv_conf.h b/lv_conf.h
index 0609a6e..5a0ea26 100644
--- a/lv_conf.h
+++ b/lv_conf.h
@@ -20,8 +20,8 @@
*====================*/
/* Maximal horizontal and vertical resolution to support by the library.*/
-#define LV_HOR_RES_MAX (2048)
-#define LV_VER_RES_MAX (2048)
+#define LV_HOR_RES_MAX (1024)
+#define LV_VER_RES_MAX (768)
/* Color depth:
* - 1: 1 byte per pixel
@@ -29,7 +29,7 @@
* - 16: RGB565
* - 32: ARGB8888
*/
-#define LV_COLOR_DEPTH 32
+#define LV_COLOR_DEPTH 16
/* Swap the 2 bytes of RGB565 color.
* Useful if the display has a 8 bit interface (e.g. SPI)*/