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

217 lines
6.5 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*/
2017-04-24 16:16:36 +02:00
#define LV_HOR_RES (320 * LV_DOWNSCALE)
#define LV_VER_RES (240 * LV_DOWNSCALE)
#define LV_DPI (80 * LV_DOWNSCALE)
2016-06-08 07:25:08 +02:00
/* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/
2017-04-24 16:16:36 +02:00
#define LV_VDB_SIZE (LV_HOR_RES * 20)
2016-06-08 07:25:08 +02:00
/* Enable antialaiassing
* If enabled everything will half-sized
* Use LV_DOWNSCALE to compensate
* the down scaling effect of antialiassing*/
2017-01-06 16:04:58 +01:00
#define LV_ANTIALIAS 1
2017-04-24 16:16:36 +02:00
2017-01-06 16:04:58 +01:00
/*Set the downscaling value*/
#if LV_ANTIALIAS == 0
#define LV_DOWNSCALE 1
#else
2017-01-02 15:00:21 +01:00
#define LV_DOWNSCALE 2
2017-01-06 16:04:58 +01:00
#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-01-02 15:00:21 +01:00
#define LV_DISPI_READ_PERIOD 50 /*Input device read period milliseconds*/
2017-05-03 15:06:32 +02:00
#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points (Value means marker point size)*/
2017-01-02 15:00:21 +01:00
#define LV_DISPI_DRAG_LIMIT 10 /*Drag threshold in pixels */
#define LV_DISPI_DRAG_THROW 20 /*Drag throw slow-down in [%]. Greater value means faster slow-down */
#define LV_DISPI_LONG_PRESS_TIME 400 /*Long press time in milliseconds*/
#define LV_DISPI_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*/
/*Others*/
#define LV_COLOR_TRANSP COLOR_LIME
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
2017-01-02 15:00:21 +01:00
#define LV_LABEL_SCROLL_SPEED (25 * LV_DOWNSCALE) /*Hor, or ver. scroll speed (px/sec) in 'LV_LABEL_LONG_SCROLL' mode*/
#define LV_LABEL_SCROLL_SPEED_VER (10 * LV_DOWNSCALE) /*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-01-02 15:29:05 +01:00
/*Page (dependencies: lv_rect)*/
2016-06-08 07:25:08 +02:00
#define USE_LV_PAGE 1
2017-04-24 16:16:36 +02:00
/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/
#define USE_LV_WIN 1
2017-01-02 15:00:21 +01:00
2017-04-24 16:16:36 +02:00
/*************************
* Data visualizer object
*************************/
/*Bar (dependencies: -)*/
#define USE_LV_BAR 1
/*Line meter (dependencies: bar, misc: trigo)*/
#define USE_LV_LMETER 1
/*Gauge (dependencies: misc: trigo)*/
#define USE_LV_GAUGE 1
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-01-02 15:29:05 +01:00
/*LED (dependencies: lv_rect)*/
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_MAX_LENGTH 256
2017-01-02 15:00:21 +01:00
#define LV_TA_CUR_BLINK_TIME 400 /*ms*/
#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
2017-04-24 16:16:36 +02:00
/*Check box (dependencies: lv_btn, lv_label)*/
#define USE_LV_CB 1
/*List (dependencies: lv_btn, lv_label, lv_img)*/
#define USE_LV_LIST 1
/*Drop down list (dependencies: lv_page, lv_label)*/
#define USE_LV_DDLIST 1
2017-02-06 10:07:25 +01:00
2017-04-24 16:16:36 +02:00
/*Bar (dependencies: lv_bar)*/
#define USE_LV_SLIDER 1
2017-01-02 15:00:21 +01:00
2016-06-08 07:25:08 +02:00
/*==================
* LV APP SETTINGS
2016-06-08 07:25:08 +02:00
* =================*/
2017-01-02 15:00:21 +01:00
/*Enable the application system*/
#define LV_APP_ENABLE 1
#if LV_APP_ENABLE != 0
2017-05-03 15:06:32 +02:00
#define LV_APP_DESKTOP 1
2017-01-02 15:00:21 +01:00
#define LV_APP_SC_WIDTH (LV_HOR_RES / 4) /*Shortcut width*/
#define LV_APP_SC_HEIGHT (LV_VER_RES / 3) /*Shortcut height*/
#define LV_APP_FONT_SMALL FONT_DEJAVU_20
2017-05-08 11:23:10 +02:00
#define LV_APP_FONT_MEDIUM FONT_DEFAULT
2017-01-02 15:00:21 +01:00
#define LV_APP_FONT_LARGE FONT_DEJAVU_40
/*Animation settings*/
#define LV_APP_ANIM_WIN 200 /*Animation time in milliseconds (0: turn off animation)*/
#define LV_APP_ANIM_DESKTOP 200 /*Animation on the desktop (0: turn off animation)*/
2017-01-02 15:00:21 +01:00
/* App. utility settings */
#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/
#define LV_APP_NOTICE_CLOSE_ANIM_TIME 300 /*Notice close animation time. [ms] 0: no animation */
#define LV_APP_NOTICE_MAX_NUM 6 /*Max. number of notices*/
#define LV_APP_NOTICE_MAX_LEN 256 /*Max. number of characters on a notice*/
2016-06-08 07:25:08 +02:00
/*==================
* LV APP X USAGE
* ================*/
2017-01-02 15:00:21 +01:00
#define USE_LV_APP_EXAMPLE 1
#define USE_LV_APP_SYSMON 1
#if USE_LV_APP_SYSMON != 0
#define LV_APP_SYSMON_REFR_TIME 500 /*[ms]*/
#define LV_APP_SYSMON_PNUM 64
#define LV_APP_SYSMON_MEM_WARN (4 * 1024)
#define LV_APP_SYSMON_FRAG_WARN (70) /*[%]*/
#define LV_APP_SYSMON_DEFRAG_PERIOD (5000) /*[%]*/
#endif /*USE_LV_APP_SYSMON != 0*/
#define USE_LV_APP_TERMINAL 1
#if USE_LV_APP_TERMINAL != 0
#define LV_APP_TERMINAL_LENGTH 512 /*Memory of the terminal*/
#endif /*USE_LV_APP_TERMINAL != 0*/
2017-01-06 13:41:10 +01:00
#define USE_LV_APP_FILES 1
#if USE_LV_APP_FILES != 0
#define LV_APP_FILES_PAGE_SIZE 8 /*Max. number of files/folder on a page*/
#define LV_APP_FILES_FN_MAX_LEN 128
#define LV_APP_FILES_PATH_MAX_LEN 256
#define LV_APP_FILES_CHUNK_DEF_SIZE 256
#define LV_APP_FILES_CHUNK_DEF_TIME 100
#define LV_APP_FILES_CHUNK_MAX_SIZE 1024
#endif /*USE_LV_APP_FILES != 0*/
2017-01-02 15:00:21 +01:00
#endif /*LV_APP_ENABLE != 0*/
#endif /*LV_CONF_H*/
2016-06-08 07:25:08 +02:00
#endif /*Remove this to enable the content*/