add the optional VDB write interface to the display driver (vdb_wr)

This commit is contained in:
Gabor Kiss-Vamosi
2018-08-04 01:46:00 +02:00
parent fbf0303b2d
commit f968792286
12 changed files with 213 additions and 99 deletions

View File

@@ -57,6 +57,17 @@ extern "C" {
#define LV_OPA_100 255
#define LV_OPA_COVER 255
#if LV_COLOR_DEPTH == 1
#define LV_COLOR_SIZE 8
#elif LV_COLOR_DEPTH == 8
#define LV_COLOR_SIZE 8
#elif LV_COLOR_DEPTH == 16
#define LV_COLOR_SIZE 16
#elif LV_COLOR_DEPTH == 24
#define LV_COLOR_SIZE 32
#else
#error "Invalid color depth (LV_COLOR_DEPTH in lv_conf.h)"
#endif
/**********************
* TYPEDEFS