1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/lv_conf_templ.h

176 lines
5.6 KiB
C
Raw Normal View History

2016-06-08 07:25:08 +02:00
/**
* @file lv_conf.h
*
*/
2017-01-02 15:00:21 +01:00
#if 0 /*Remove this to enable the content (Delete the last #endif too!)*/
2016-06-08 07:25:08 +02:00
#ifndef LV_CONF_H
#define LV_CONF_H
2017-01-02 15:00:21 +01:00
/*===================
2016-06-08 07:25:08 +02:00
Graphical settings
*=====================*/
/* Horizontal and vertical resolution of the library.
* Screen resolution multiplied by LV_DOWN_SCALE*/
#define LV_HOR_RES (320 << LV_ANTIALIAS)
#define LV_VER_RES (240 << LV_ANTIALIAS)
#define LV_DPI (80 << LV_ANTIALIAS)
/* Enable anti-aliasing
* If enabled everything will half-sized
* Use LV_DOWNSCALE to compensate he down scaling effect of anti-aliasing*/
2017-01-06 16:04:58 +01:00
#define LV_ANTIALIAS 1
#define LV_DOWNSCALE (1 << LV_ANTIALIAS) /*Set the downscaling value*/
2017-04-24 16:16:36 +02:00
/* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/
#define LV_VDB_SIZE (LV_HOR_RES * LV_VER_RES / 20)
#if LV_VDB_SIZE
/* Double virtual buffering
* One for rendering another to transfer former rendered image to frame buffer in the background*/
#define LV_VDB_DOUBLE 0
#endif
2016-06-08 07:25:08 +02:00
2017-01-02 15:00:21 +01:00
#define LV_REFR_PERIOD 40 /*Screen refresh period in milliseconds*/
2016-06-08 07:25:08 +02:00
#define LV_INV_FIFO_SIZE 32 /*The average number of objects on a screen */
/*=================
Misc. setting
*=================*/
/*Display Input settings*/
2017-10-10 16:17:23 +02:00
#define LV_INDEV_READ_PERIOD 50 /*Input device read period milliseconds*/
#define LV_INDEV_TP_MARKER 0 /*Mark the pressed points (Value means marker point size)*/
#define LV_INDEV_DRAG_LIMIT (10 << LV_ANTIALIAS) /*Drag threshold in pixels */
2017-10-10 16:17:23 +02: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] */
2016-06-08 07:25:08 +02:00
/*lv_obj (base object) settings*/
2017-04-24 16:16:36 +02:00
#define LV_OBJ_FREE_NUM 1 /*Enable the free number attribute*/
2017-01-02 15:00:21 +01:00
#define LV_OBJ_FREE_P 1 /*Enable the free pointer attribute*/
#define LV_OBJ_GROUP 1 /*Enable object groups*/
2017-01-02 15:00:21 +01:00
/*Others*/
#define LV_COLOR_TRANSP COLOR_LIME /*This could mean transparent pixel*/
#define USE_LV_EXAMPLE 1 /*Enable examples (lvgl/lv_examples/). Disable to save memory*/
2016-06-08 07:25:08 +02:00
/*==================
* LV OBJ X USAGE
* ================*/
2017-01-02 15:00:21 +01:00
2017-04-24 16:16:36 +02:00
/*****************
* Simple object
*****************/
2016-06-08 07:25:08 +02:00
2017-01-02 15:29:05 +01:00
/*Label (dependencies: -*/
2016-06-08 07:25:08 +02:00
#define USE_LV_LABEL 1
#if USE_LV_LABEL != 0
#define LV_LABEL_SCROLL_SPEED (25 << LV_ANTIALIAS) /*Hor, or ver. scroll speed (px/sec) in 'LV_LABEL_LONG_SCROLL' mode*/
#define LV_LABEL_SCROLL_SPEED_VER (10 << LV_ANTIALIAS) /*Ver. scroll speed if hor. scroll is applied too*/
2017-01-02 15:00:21 +01:00
#define LV_LABEL_SCROLL_PLAYBACK_PAUSE 500 /*Wait before the scroll turns back in ms*/
#define LV_LABEL_SCROLL_REPEAT_PAUSE 500 /*Wait before the scroll begins again in ms*/
#endif
2016-06-08 07:25:08 +02:00
2017-01-16 12:30:22 +01:00
/*Image (dependencies: lv_label (if symbols are enabled) from misc: FSINT, UFS)*/
2017-01-02 15:29:05 +01:00
#define USE_LV_IMG 1
2016-06-08 07:25:08 +02:00
#if USE_LV_IMG != 0
2017-04-24 16:16:36 +02:00
//#define LV_IMG_DEF_WALLPAPER img_square_x1 /*Comment this line to NOT use wallpaper*/
2017-01-16 12:30:22 +01:00
/* 1: enables to interpret the file names as symbol name
* from symbol_def.h if they begin with a lower case letter.
* (driver letters are always upper case)*/
#define LV_IMG_ENABLE_SYMBOLS 1
#if LV_IMG_ENABLE_SYMBOLS != 0
#define LV_IMG_DEF_SYMBOL_FONT FONT_SYMBOL_30
#endif /*LV_IMG_ENABLE_SYMBOLS*/
2016-06-08 07:25:08 +02:00
#endif /*USE_LV_IMG*/
2017-04-24 16:16:36 +02:00
/*Line (dependencies: -*/
#define USE_LV_LINE 1
/*******************
* Container object
*******************/
/*Container (dependencies: -*/
#define USE_LV_CONT 1
2017-05-15 09:14:48 +02:00
/*Page (dependencies: lv_cont)*/
2016-06-08 07:25:08 +02:00
#define USE_LV_PAGE 1
2017-05-15 09:14:48 +02:00
/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/
2017-04-24 16:16:36 +02:00
#define USE_LV_WIN 1
2017-01-02 15:00:21 +01:00
/*Tab (dependencies: lv_page, lv_btnm)*/
#define USE_LV_TABVIEW 1
#if USE_LV_TABVIEW != 0
#define LV_TABVIEW_ANIM_TIME 300 /*Time of slide animation [ms] (0: no animation)*/
#endif
2017-04-24 16:16:36 +02:00
/*************************
* Data visualizer object
*************************/
/*Bar (dependencies: -)*/
#define USE_LV_BAR 1
2017-05-15 09:14:48 +02:00
/*Line meter (dependencies: bar; misc: trigo)*/
2017-04-24 16:16:36 +02:00
#define USE_LV_LMETER 1
2017-05-15 09:14:48 +02:00
/*Gauge (dependencies:bar, lmeter; misc: trigo)*/
2017-04-24 16:16:36 +02:00
#define USE_LV_GAUGE 1
2017-07-09 15:32:49 +02:00
#if USE_LV_GAUGE != 0
#define LV_GAUGE_MAX_NEEDLE 4 /*Max number of needles. Used in the style.*/
#endif
2016-06-08 07:25:08 +02:00
2017-04-24 16:16:36 +02:00
/*Chart (dependencies: -)*/
#define USE_LV_CHART 1
2016-09-30 13:35:54 +02:00
2017-05-15 09:14:48 +02:00
/*LED (dependencies: -)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_LED 1
2016-09-30 13:35:54 +02:00
2017-04-24 16:16:36 +02:00
/*Message box (dependencies: lv_rect, lv_btn, lv_label)*/
#define USE_LV_MBOX 1
2016-09-30 13:35:54 +02:00
2017-01-02 15:29:05 +01:00
/*Text area (dependencies: lv_label, lv_page)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_TA 1
#if USE_LV_TA != 0
#define LV_TA_CUR_BLINK_TIME 400 /*ms*/
#define LV_TA_PWD_SHOW_TIME 1500 /*ms*/
2017-01-02 15:00:21 +01:00
#endif
2016-09-30 13:35:54 +02:00
2017-04-24 16:16:36 +02:00
/*************************
* User input object
*************************/
/*Button (dependencies: lv_cont*/
#define USE_LV_BTN 1
/*Button matrix (dependencies: -)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_BTNM 1
2016-09-30 13:35:54 +02:00
/*Keyboard (dependencies: lv_btnm)*/
#define USE_LV_KB 1
2017-04-24 16:16:36 +02:00
/*Check box (dependencies: lv_btn, lv_label)*/
#define USE_LV_CB 1
2017-08-18 21:14:11 +02:00
/*Switch (dependencies: lv_slider)*/
#define USE_LV_SW 1
2017-05-15 09:14:48 +02:00
/*List (dependencies: lv_page, lv_btn, lv_label, lv_img)*/
2017-04-24 16:16:36 +02:00
#define USE_LV_LIST 1
#if USE_LV_LIST != 0
#define LV_LIST_FOCUS_TIME 100 /*Animation time of focusing to the a list element [ms] (0: no animation) */
#endif
2017-04-24 16:16:36 +02:00
/*Drop down list (dependencies: lv_page, lv_label)*/
#define USE_LV_DDLIST 1
2017-02-06 10:07:25 +01:00
2017-05-15 09:14:48 +02:00
/*Slider (dependencies: lv_bar)*/
2017-04-24 16:16:36 +02:00
#define USE_LV_SLIDER 1
2017-01-02 15:00:21 +01:00
#endif /*LV_CONF_H*/
2016-06-08 07:25:08 +02:00
#endif /*Remove this to enable the content*/