1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/lv_conf_temp.h

192 lines
6.1 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 (480 * LV_DOWNSCALE)
#define LV_VER_RES (320 * LV_DOWNSCALE)
/* Buffered rendering: >= LV_DOWNSCALE * LV_HOR_RES or 0 to disable buffering*/
2017-01-02 15:00:21 +01:00
#define LV_VDB_SIZE (LV_HOR_RES * (LV_VER_RES / 20))
2016-06-08 07:25:08 +02:00
/* Anti-aliasing with downscaling everything
* 1: disabled
* 2: 2x anti-alias -> half size
* 4: 4x anti-alias -> quarter size */
2017-01-02 15:00:21 +01:00
#define LV_DOWNSCALE 2
2016-06-08 07:25:08 +02:00
2017-01-02 15:00:21 +01:00
#define LV_UPSCALE_MAP 0 /*Scale up maps (e.g. images) elements to compensate LV_DOWNSCALE*/
#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*/
#define LV_DISPI_TP_MARKER 0 /*Mark the pressed points*/
#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
/*Coordinates*/
2017-01-02 15:00:21 +01:00
#define LV_CORD_TYPE int16_t /*Coordinate type*/
2016-06-08 07:25:08 +02:00
#define LV_CORD_MAX (32000)
#define LV_CORD_MIN (-32000)
/*Fonts and texts*/
2017-01-02 15:00:21 +01:00
#define USE_FONT_DEJAVU_8 1
#define USE_FONT_DEJAVU_10 1
2016-06-08 07:25:08 +02:00
#define USE_FONT_DEJAVU_14 1
#define USE_FONT_DEJAVU_20 1
#define USE_FONT_DEJAVU_30 1
#define USE_FONT_DEJAVU_40 1
#define USE_FONT_DEJAVU_60 1
#define USE_FONT_DEJAVU_80 1
2017-01-02 15:00:21 +01:00
#define LV_FONT_DEFAULT FONT_DEJAVU_30 /*Always set a default font*/
#define LV_TXT_BREAK_CHARS " ,.;-" /*Can break texts on these chars*/
2016-06-08 07:25:08 +02:00
/*lv_obj (base object) settings*/
2017-01-02 15:00:21 +01:00
#define LV_OBJ_FREE_P 1 /*Enable the free pointer attribute*/
#define LV_OBJ_DEF_SCR_COLOR COLOR_SILVER /*Default screen color*/
/*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-01-02 15:29:05 +01:00
/*Rectangle (dependencies: -*/
2016-06-08 07:25:08 +02:00
#define USE_LV_RECT 1
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-02 15:29:05 +01:00
/*Button (dependencies: lv_rect*/
2016-06-08 07:25:08 +02:00
#define USE_LV_BTN 1
2017-01-02 15:29:05 +01:00
/*Line (dependencies: -*/
2016-06-08 07:25:08 +02:00
#define USE_LV_LINE 1
2017-01-02 15:29:05 +01:00
/*Image (dependencies: from misc: FSINT, UFS)*/
#define USE_LV_IMG 1
2016-06-08 07:25:08 +02:00
#if USE_LV_IMG != 0
2017-01-02 15:00:21 +01:00
//#define LV_IMG_DEF_WALLPAPER img_wallpaper_var /*Comment this line to NOT use wallpaper*/
2016-06-08 07:25:08 +02:00
#endif /*USE_LV_IMG*/
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
#if USE_LV_PAGE != 0
#define LV_PAGE_ANIM_FOCUS_TIME 300 /*List focus animation time [ms] (0: turn off the animation)*/
#endif
2016-06-08 07:25:08 +02:00
2017-01-02 15:29:05 +01:00
/*List (dependencies: lv_btn, lv_label, lv_img)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_LIST 1
2017-01-02 15:29:05 +01:00
/*Check box (dependencies: lv_btn, lv_label)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_CB 1
2016-06-08 07:25:08 +02:00
2017-01-02 15:29:05 +01:00
/*Progress bar (dependencies: lv_rect, lv_label)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_PB 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-01-02 15:29:05 +01:00
/*Chart (dependencies: lv_rect, lv_line)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_CHART 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 8
#define LV_TA_CUR_BLINK_TIME 400 /*ms*/
#endif
2016-09-30 13:35:54 +02:00
2017-01-02 15:29:05 +01:00
/*Button matrix (dependencies: lv_rect, lv_label)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_BTNM 1
2016-09-30 13:35:54 +02:00
2017-01-02 15:29:05 +01:00
/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_WIN 1
2017-01-02 15:29:05 +01:00
/*Message box (dependencies: lv_rect, lv_btn, lv_label)*/
2017-01-02 15:00:21 +01:00
#define USE_LV_MBOX 1
2016-09-30 15:29:00 +02: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
#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
#define LV_APP_FONT_MEDIUM FONT_DEJAVU_30
#define LV_APP_FONT_LARGE FONT_DEJAVU_40
/* Internal icons:
* 0: Do not use internal icons (img_close, img_add etc. icons have to be provided)
* 1: Reserved
* 2: Use double sized icons
* 4: Reserved */
#define LV_APP_USE_INTERNAL_ICONS 2
/*Animation settings*/
#define LV_APP_EFFECT_OPA 1 /*Enable the opacity in the application style (can be modified)*/
#define LV_APP_EFFECT_ANIM 1 /*Enable the animation of the applications*/
#define LV_APP_EFFECT_OPA_ANIM 1 /*Enable the using opacity in the application animations*/
#define LV_APP_ANIM_WIN 200 /*Animation time in milliseconds (0: turn off animation)*/
#define LV_APP_ANIM_SC 200 /*Animation time in milliseconds (0: turn off animation)*/
#define LV_APP_ANIM_NOTICE 300 /*How fast animate out a notice [ms]*/
/* App. utility settings */
#define LV_APP_NOTICE_SHOW_TIME 4000 /*Notices will be shown for this time [ms]*/
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*/
#endif /*LV_APP_ENABLE != 0*/
#endif /*LV_CONF_H*/
2016-06-08 07:25:08 +02:00
#endif /*Remove this to enable the content*/