forked from lvgl/lv_port_pc_eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lv_ex_conf.h
53 lines (40 loc) · 1.28 KB
/
lv_ex_conf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* @file lv_ex_conf.h
*
*/
#ifndef LV_EX_CONF_H
#define LV_EX_CONF_H
/*******************
* GENERAL SETTING
*******************/
#define LV_EX_PRINTF 1 /*Enable printf-ing data*/
#define LV_EX_KEYBOARD 1 /*Add PC keyboard support to some examples (`lv_drvers` repository is required)*/
#define LV_EX_MOUSEWHEEL 1 /*Add 'encoder' (mouse wheel) support to some examples (`lv_drivers` repository is required)*/
/*******************
* TEST USAGE
*******************/
#define LV_USE_TESTS 1
/*******************
* TUTORIAL USAGE
*******************/
#define LV_USE_TUTORIALS 1
/*********************
* APPLICATION USAGE
*********************/
/* Test the graphical performance of your MCU
* with different settings*/
#define LV_USE_BENCHMARK 1
/*A demo application with Keyboard, Text area, List and Chart
* placed on Tab view */
#define LV_USE_DEMO 1
#if LV_USE_DEMO
#define LV_DEMO_WALLPAPER 1 /*Create a wallpaper too*/
#define LV_DEMO_SLIDE_SHOW 0 /*Automatically switch between tabs*/
#endif
/*MCU and memory usage monitoring*/
#define LV_USE_SYSMON 1
/*A terminal to display received characters*/
#define LV_USE_TERMINAL 1
/*Touch pad calibration with 4 points*/
#define LV_USE_TPCAL 1
#endif /*LV_EX_CONF_H*/