2016-06-08 13:25:08 +08:00
|
|
|
/**
|
|
|
|
* @file lv_conf.h
|
2018-06-18 18:52:14 +08:00
|
|
|
*
|
2016-06-08 13:25:08 +08:00
|
|
|
*/
|
|
|
|
|
2017-01-02 22:00:21 +08:00
|
|
|
#if 0 /*Remove this to enable the content (Delete the last #endif too!)*/
|
|
|
|
|
2017-11-20 04:54:07 +08:00
|
|
|
#ifndef LV_CONF_H
|
|
|
|
#define LV_CONF_H
|
|
|
|
|
2017-11-26 20:13:45 +08:00
|
|
|
/*----------------
|
|
|
|
* Dynamic memory
|
|
|
|
*----------------*/
|
2018-02-24 00:07:02 +08:00
|
|
|
|
|
|
|
/* Memory size which will be used by the library
|
|
|
|
* to store the graphical objects and other data */
|
2017-11-26 20:13:45 +08:00
|
|
|
#define LV_MEM_CUSTOM 0 /*1: use custom malloc/free, 0: use the built-in lv_mem_alloc/lv_mem_free*/
|
|
|
|
#if LV_MEM_CUSTOM == 0
|
2018-03-01 19:52:35 +08:00
|
|
|
#define LV_MEM_SIZE (32U * 1024U) /*Size memory used by `lv_mem_alloc` in bytes (>= 2kB)*/
|
2017-11-26 20:13:45 +08:00
|
|
|
#define LV_MEM_ATTR /*Complier prefix for big array declaration*/
|
2017-12-03 07:36:31 +08:00
|
|
|
#define LV_MEM_AUTO_DEFRAG 1 /*Automatically defrag on free*/
|
2017-11-26 20:13:45 +08:00
|
|
|
#else /*LV_MEM_CUSTOM*/
|
|
|
|
#define LV_MEM_CUSTOM_INCLUDE <stdlib.h> /*Header for the dynamic memory function*/
|
|
|
|
#define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/
|
|
|
|
#define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/
|
2017-12-08 02:27:13 +08:00
|
|
|
#endif /*LV_MEM_CUSTOM*/
|
2017-11-20 04:54:07 +08:00
|
|
|
|
2017-01-02 22:00:21 +08:00
|
|
|
/*===================
|
2016-06-08 13:25:08 +08:00
|
|
|
Graphical settings
|
2018-03-01 19:52:35 +08:00
|
|
|
*===================*/
|
2016-06-08 13:25:08 +08:00
|
|
|
|
2017-12-08 02:27:13 +08:00
|
|
|
/* Horizontal and vertical resolution of the library.*/
|
2017-12-22 22:47:12 +08:00
|
|
|
#define LV_HOR_RES (320)
|
|
|
|
#define LV_VER_RES (240)
|
2017-12-08 02:22:23 +08:00
|
|
|
#define LV_DPI 100
|
2017-04-24 22:16:36 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/* Size of VDB (Virtual Display Buffer: the internal graphics buffer).
|
|
|
|
* Required for buffered drawing, opacity and anti-aliasing
|
|
|
|
* VDB makes the double buffering, you don't need to deal with it!
|
|
|
|
* Typical size: ~1/10 screen */
|
2018-03-01 20:17:29 +08:00
|
|
|
#define LV_VDB_SIZE (20 * LV_HOR_RES) /*Size of VDB in pixel count (1/10 screen size is good for first)*/
|
2018-02-23 20:56:04 +08:00
|
|
|
#define LV_VDB_ADR 0 /*Place VDB to a specific address (e.g. in external RAM) (0: allocate automatically into RAM)*/
|
2017-11-20 04:54:07 +08:00
|
|
|
|
2018-01-02 19:40:09 +08:00
|
|
|
/* Use two Virtual Display buffers (VDB) parallelize rendering and flushing (optional)
|
2017-11-29 22:41:57 +08:00
|
|
|
* The flushing should use DMA to write the frame buffer in the background*/
|
2018-01-02 19:40:09 +08:00
|
|
|
#define LV_VDB_DOUBLE 0 /*1: Enable the use of 2 VDBs*/
|
|
|
|
#define LV_VDB2_ADR 0 /*Place VDB2 to a specific address (e.g. in external RAM) (0: allocate automatically into RAM)*/
|
2017-11-29 22:41:57 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/* Enable anti-aliasing (lines, and radiuses will be smoothed) */
|
|
|
|
#define LV_ANTIALIAS 1 /*1: Enable anti-aliasing*/
|
2017-12-08 02:27:13 +08:00
|
|
|
|
|
|
|
/*Screen refresh settings*/
|
|
|
|
#define LV_REFR_PERIOD 50 /*Screen refresh period in milliseconds*/
|
|
|
|
#define LV_INV_FIFO_SIZE 32 /*The average count of objects on a screen */
|
2018-02-23 20:56:04 +08:00
|
|
|
|
2016-06-08 13:25:08 +08:00
|
|
|
/*=================
|
|
|
|
Misc. setting
|
|
|
|
*=================*/
|
2017-11-20 04:54:07 +08:00
|
|
|
|
|
|
|
/*Input device settings*/
|
2017-11-26 20:13:45 +08:00
|
|
|
#define LV_INDEV_READ_PERIOD 50 /*Input device read period in milliseconds*/
|
2018-03-05 00:03:37 +08:00
|
|
|
#define LV_INDEV_POINT_MARKER 0 /*Mark the pressed points (required: USE_LV_REAL_DRAW = 1)*/
|
2017-12-08 02:22:23 +08:00
|
|
|
#define LV_INDEV_DRAG_LIMIT 10 /*Drag threshold in pixels */
|
2017-11-26 20:13:45 +08:00
|
|
|
#define LV_INDEV_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */
|
|
|
|
#define LV_INDEV_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/
|
|
|
|
#define LV_INDEV_LONG_PRESS_REP_TIME 100 /*Repeated trigger period in long press [ms] */
|
|
|
|
|
|
|
|
/*Color settings*/
|
2018-01-02 19:40:09 +08:00
|
|
|
#define LV_COLOR_DEPTH 16 /*Color depth: 1/8/16/24*/
|
2018-02-23 20:56:04 +08:00
|
|
|
#define LV_COLOR_TRANSP LV_COLOR_LIME /*Images pixels with this color will not be drawn (with chroma keying)*/
|
2017-11-20 04:54:07 +08:00
|
|
|
|
2017-11-26 20:13:45 +08:00
|
|
|
/*Text settings*/
|
2018-01-02 19:40:09 +08:00
|
|
|
#define LV_TXT_UTF8 1 /*Enable UTF-8 coded Unicode character usage */
|
|
|
|
#define LV_TXT_BREAK_CHARS " ,.;:-_" /*Can break texts on these chars*/
|
2017-11-28 00:48:54 +08:00
|
|
|
|
2017-12-21 07:19:59 +08:00
|
|
|
/*Graphics feature usage*/
|
2018-01-02 19:40:09 +08:00
|
|
|
#define USE_LV_ANIMATION 1 /*1: Enable all animations*/
|
|
|
|
#define USE_LV_SHADOW 1 /*1: Enable shadows*/
|
2017-12-08 02:27:13 +08:00
|
|
|
#define USE_LV_GROUP 1 /*1: Enable object groups (for keyboards)*/
|
2017-12-22 22:47:12 +08:00
|
|
|
#define USE_LV_GPU 1 /*1: Enable GPU interface*/
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_REAL_DRAW 1 /*1: Enable function which draw directly to the frame buffer instead of VDB (required if LV_VDB_SIZE = 0)*/
|
2018-01-02 19:40:09 +08:00
|
|
|
#define USE_LV_FILESYSTEM 1 /*1: Enable file system (required by images*/
|
2017-11-20 04:54:07 +08:00
|
|
|
|
2018-03-22 17:09:00 +08:00
|
|
|
/*Compiler settings*/
|
|
|
|
#define LV_ATTRIBUTE_TICK_INC /* Define a custom attribute to `lv_tick_inc` function */
|
|
|
|
#define LV_ATTRIBUTE_TASK_HANDLER /* Define a custom attribute to `lv_task_handler` function */
|
|
|
|
#define LV_COMPILER_VLA_SUPPORTED 1 /* 1: Variable length array is supported*/
|
2018-01-15 18:03:50 +08:00
|
|
|
|
2017-12-21 07:19:59 +08:00
|
|
|
/*================
|
2017-11-20 04:54:07 +08:00
|
|
|
* THEME USAGE
|
2017-11-26 20:13:45 +08:00
|
|
|
*================*/
|
2017-11-20 05:24:57 +08:00
|
|
|
#define USE_LV_THEME_TEMPL 0 /*Just for test*/
|
2017-12-22 22:47:12 +08:00
|
|
|
#define USE_LV_THEME_DEFAULT 0 /*Built mainly from the built-in styles. Consumes very few RAM*/
|
|
|
|
#define USE_LV_THEME_ALIEN 0 /*Dark futuristic theme*/
|
|
|
|
#define USE_LV_THEME_NIGHT 0 /*Dark elegant theme*/
|
|
|
|
#define USE_LV_THEME_MONO 0 /*Mono color theme for monochrome displays*/
|
|
|
|
#define USE_LV_THEME_MATERIAL 0 /*Flat theme with bold colors and light shadows*/
|
|
|
|
#define USE_LV_THEME_ZEN 0 /*Peaceful, mainly light theme */
|
2017-12-03 07:38:08 +08:00
|
|
|
|
2017-11-26 20:13:45 +08:00
|
|
|
/*==================
|
|
|
|
* FONT USAGE
|
|
|
|
*===================*/
|
2018-02-24 00:07:02 +08:00
|
|
|
|
|
|
|
/* More info about fonts: https://littlevgl.com/basics#fonts
|
|
|
|
* To enable a built-in font use 1,2,4 or 8 values
|
|
|
|
* which will determine the bit-per-pixel */
|
2018-02-23 20:56:04 +08:00
|
|
|
#define LV_FONT_DEFAULT &lv_font_dejavu_20 /*Always set a default font from the built-in fonts*/
|
2017-11-26 20:13:45 +08:00
|
|
|
|
|
|
|
#define USE_LV_FONT_DEJAVU_10 0
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_FONT_DEJAVU_10_LATIN_SUP 0
|
2017-11-26 20:13:45 +08:00
|
|
|
#define USE_LV_FONT_DEJAVU_10_CYRILLIC 0
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_FONT_SYMBOL_10 0
|
|
|
|
|
|
|
|
#define USE_LV_FONT_DEJAVU_20 4
|
|
|
|
#define USE_LV_FONT_DEJAVU_20_LATIN_SUP 0
|
2017-11-26 20:13:45 +08:00
|
|
|
#define USE_LV_FONT_DEJAVU_20_CYRILLIC 0
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_FONT_SYMBOL_20 4
|
2017-11-26 20:13:45 +08:00
|
|
|
|
|
|
|
#define USE_LV_FONT_DEJAVU_30 0
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_FONT_DEJAVU_30_LATIN_SUP 0
|
2017-11-26 20:13:45 +08:00
|
|
|
#define USE_LV_FONT_DEJAVU_30_CYRILLIC 0
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_FONT_SYMBOL_30 0
|
|
|
|
|
|
|
|
#define USE_LV_FONT_DEJAVU_40 0
|
|
|
|
#define USE_LV_FONT_DEJAVU_40_LATIN_SUP 0
|
2018-01-19 22:21:51 +08:00
|
|
|
#define USE_LV_FONT_DEJAVU_40_CYRILLIC 0
|
2018-02-23 20:56:04 +08:00
|
|
|
#define USE_LV_FONT_SYMBOL_40 0
|
2017-11-26 20:13:45 +08:00
|
|
|
|
2017-12-08 02:27:13 +08:00
|
|
|
/*===================
|
2017-11-26 21:39:22 +08:00
|
|
|
* LV_OBJ SETTINGS
|
|
|
|
*==================*/
|
2017-11-26 20:13:45 +08:00
|
|
|
#define LV_OBJ_FREE_NUM_TYPE uint32_t /*Type of free number attribute (comment out disable free number)*/
|
|
|
|
#define LV_OBJ_FREE_PTR 1 /*Enable the free pointer attribute*/
|
|
|
|
|
2016-06-08 13:25:08 +08:00
|
|
|
/*==================
|
2018-06-18 18:52:14 +08:00
|
|
|
* LV OBJ X USAGE
|
2017-11-26 20:13:45 +08:00
|
|
|
*================*/
|
2018-01-02 19:40:09 +08:00
|
|
|
/*
|
|
|
|
* Documentation of the object types: https://littlevgl.com/object-types
|
|
|
|
*/
|
2017-01-02 22:00:21 +08:00
|
|
|
|
2017-04-24 22:16:36 +08:00
|
|
|
/*****************
|
|
|
|
* Simple object
|
|
|
|
*****************/
|
2016-06-08 13:25:08 +08:00
|
|
|
|
2017-01-02 22:29:05 +08:00
|
|
|
/*Label (dependencies: -*/
|
2016-06-08 13:25:08 +08:00
|
|
|
#define USE_LV_LABEL 1
|
2016-12-18 04:22:16 +08:00
|
|
|
#if USE_LV_LABEL != 0
|
2018-03-01 20:17:29 +08:00
|
|
|
#define LV_LABEL_SCROLL_SPEED 25 /*Hor, or ver. scroll speed [px/sec] in 'LV_LABEL_LONG_SCROLL/ROLL' mode*/
|
2016-12-18 04:22:16 +08:00
|
|
|
#endif
|
2016-06-08 13:25:08 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/*Image (dependencies: lv_label*/
|
2017-01-02 22:29:05 +08:00
|
|
|
#define USE_LV_IMG 1
|
2016-06-08 13:25:08 +08:00
|
|
|
|
2017-04-24 22:16:36 +08:00
|
|
|
/*Line (dependencies: -*/
|
|
|
|
#define USE_LV_LINE 1
|
|
|
|
|
|
|
|
/*******************
|
2017-11-30 18:35:33 +08:00
|
|
|
* Container objects
|
2017-04-24 22:16:36 +08:00
|
|
|
*******************/
|
|
|
|
|
|
|
|
/*Container (dependencies: -*/
|
|
|
|
#define USE_LV_CONT 1
|
|
|
|
|
2017-05-15 15:14:48 +08:00
|
|
|
/*Page (dependencies: lv_cont)*/
|
2016-06-08 13:25:08 +08:00
|
|
|
#define USE_LV_PAGE 1
|
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/
|
2017-04-24 22:16:36 +08:00
|
|
|
#define USE_LV_WIN 1
|
2017-01-02 22:00:21 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/*Tab (dependencies: lv_page, lv_btnm)*/
|
2017-08-23 20:23:07 +08:00
|
|
|
#define USE_LV_TABVIEW 1
|
|
|
|
#if USE_LV_TABVIEW != 0
|
2018-01-02 19:40:09 +08:00
|
|
|
#define LV_TABVIEW_ANIM_TIME 300 /*Time of slide animation [ms] (0: no animation)*/
|
2017-08-23 20:23:07 +08:00
|
|
|
#endif
|
|
|
|
|
2017-04-24 22:16:36 +08:00
|
|
|
/*************************
|
2017-11-30 18:35:33 +08:00
|
|
|
* Data visualizer objects
|
2017-04-24 22:16:36 +08:00
|
|
|
*************************/
|
|
|
|
|
|
|
|
/*Bar (dependencies: -)*/
|
2017-11-20 04:54:07 +08:00
|
|
|
#define USE_LV_BAR 1
|
2017-04-24 22:16:36 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/*Line meter (dependencies: *;)*/
|
2017-04-24 22:16:36 +08:00
|
|
|
#define USE_LV_LMETER 1
|
|
|
|
|
2017-12-21 07:19:59 +08:00
|
|
|
/*Gauge (dependencies:bar, lmeter)*/
|
2017-04-24 22:16:36 +08:00
|
|
|
#define USE_LV_GAUGE 1
|
2016-06-08 13:25:08 +08:00
|
|
|
|
2017-04-24 22:16:36 +08:00
|
|
|
/*Chart (dependencies: -)*/
|
|
|
|
#define USE_LV_CHART 1
|
2016-09-30 19:35:54 +08:00
|
|
|
|
2017-05-15 15:14:48 +08:00
|
|
|
/*LED (dependencies: -)*/
|
2017-01-02 22:00:21 +08:00
|
|
|
#define USE_LV_LED 1
|
2016-09-30 19:35:54 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/*Message box (dependencies: lv_rect, lv_btnm, lv_label)*/
|
2017-04-24 22:16:36 +08:00
|
|
|
#define USE_LV_MBOX 1
|
2016-09-30 19:35:54 +08:00
|
|
|
|
2017-01-02 22:29:05 +08:00
|
|
|
/*Text area (dependencies: lv_label, lv_page)*/
|
2017-01-02 22:00:21 +08:00
|
|
|
#define USE_LV_TA 1
|
|
|
|
#if USE_LV_TA != 0
|
2017-12-21 07:19:59 +08:00
|
|
|
#define LV_TA_CURSOR_BLINK_TIME 400 /*ms*/
|
|
|
|
#define LV_TA_PWD_SHOW_TIME 1500 /*ms*/
|
2017-01-02 22:00:21 +08:00
|
|
|
#endif
|
2016-09-30 19:35:54 +08:00
|
|
|
|
2017-04-24 22:16:36 +08:00
|
|
|
/*************************
|
2017-11-30 18:35:33 +08:00
|
|
|
* User input objects
|
2017-04-24 22:16:36 +08:00
|
|
|
*************************/
|
|
|
|
|
|
|
|
/*Button (dependencies: lv_cont*/
|
|
|
|
#define USE_LV_BTN 1
|
|
|
|
|
|
|
|
/*Button matrix (dependencies: -)*/
|
2017-01-02 22:00:21 +08:00
|
|
|
#define USE_LV_BTNM 1
|
2016-09-30 19:35:54 +08:00
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
/*Keyboard (dependencies: lv_btnm)*/
|
2017-11-20 04:54:07 +08:00
|
|
|
#define USE_LV_KB 1
|
2017-08-23 20:23:07 +08:00
|
|
|
|
2017-04-24 22:16:36 +08:00
|
|
|
/*Check box (dependencies: lv_btn, lv_label)*/
|
|
|
|
#define USE_LV_CB 1
|
|
|
|
|
2017-11-20 04:54:07 +08:00
|
|
|
/*List (dependencies: lv_page, lv_btn, lv_label, (lv_img optionally for icons ))*/
|
2017-04-24 22:16:36 +08:00
|
|
|
#define USE_LV_LIST 1
|
2017-07-20 18:26:34 +08:00
|
|
|
#if USE_LV_LIST != 0
|
2017-11-20 04:54:07 +08:00
|
|
|
#define LV_LIST_FOCUS_TIME 100 /*Default animation time of focusing to a list element [ms] (0: no animation) */
|
2017-07-20 18:26:34 +08:00
|
|
|
#endif
|
2017-04-24 22:16:36 +08:00
|
|
|
|
|
|
|
/*Drop down list (dependencies: lv_page, lv_label)*/
|
|
|
|
#define USE_LV_DDLIST 1
|
2017-11-20 04:54:07 +08:00
|
|
|
#if USE_LV_DDLIST != 0
|
2017-12-11 22:42:23 +08:00
|
|
|
#define LV_DDLIST_ANIM_TIME 200 /*Open and close default animation time [ms] (0: no animation)*/
|
2017-05-15 15:14:48 +08:00
|
|
|
#endif
|
|
|
|
|
2017-12-21 07:19:59 +08:00
|
|
|
/*Roller (dependencies: lv_ddlist)*/
|
2017-11-20 04:54:07 +08:00
|
|
|
#define USE_LV_ROLLER 1
|
2017-12-21 07:19:59 +08:00
|
|
|
#if USE_LV_ROLLER != 0
|
|
|
|
#define LV_ROLLER_ANIM_TIME 200 /*Focus animation time [ms] (0: no animation)*/
|
|
|
|
#endif
|
2017-02-06 17:07:25 +08:00
|
|
|
|
2017-05-15 15:14:48 +08:00
|
|
|
/*Slider (dependencies: lv_bar)*/
|
2017-04-24 22:16:36 +08:00
|
|
|
#define USE_LV_SLIDER 1
|
2017-01-02 22:00:21 +08:00
|
|
|
|
2017-12-21 07:19:59 +08:00
|
|
|
/*Switch (dependencies: lv_slider)*/
|
|
|
|
#define USE_LV_SW 1
|
|
|
|
|
2018-03-22 21:41:55 +08:00
|
|
|
/*************************
|
|
|
|
* Non-user section
|
|
|
|
*************************/
|
|
|
|
#ifdef _MSC_VER /* Disable warnings for Visual Studio*/
|
|
|
|
# define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#endif
|
|
|
|
|
2017-01-02 22:00:21 +08:00
|
|
|
#endif /*LV_CONF_H*/
|
|
|
|
|
2018-02-23 20:56:04 +08:00
|
|
|
|
2016-06-08 13:25:08 +08:00
|
|
|
#endif /*Remove this to enable the content*/
|
|
|
|
|