forked from lvgl/lv_port_esp32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lv_ex_conf.h
60 lines (45 loc) · 1.4 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
53
54
55
56
57
58
59
/**
* @file lv_ex_conf.h
*
*/
/*
* COPY THIS FILE AS lv_ex_conf.h
*/
#if 1 /*Set it to "1" to enable the content*/
#ifndef LV_EX_CONF_H
#define LV_EX_CONF_H
/*******************
* GENERAL SETTING
*******************/
#define LV_EX_PRINTF 0 /*Enable printf-ing data*/
#define LV_EX_KEYBOARD 0 /*Add PC keyboard support to some examples (`lv_drivers` repository is required)*/
#define LV_EX_MOUSEWHEEL 0 /*Add 'encoder' (mouse wheel) support to some examples (`lv_drivers` repository is required)*/
/*******************
* TEST USAGE
*******************/
#define LV_USE_TESTS 0
/*******************
* TUTORIAL USAGE
*******************/
#define LV_USE_TUTORIALS 0
/*********************
* APPLICATION USAGE
*********************/
/* Test the graphical performance of your MCU
* with different settings*/
#define LV_USE_BENCHMARK 0
/*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 1 /*Automatically switch between tabs*/
#endif
/*MCU and memory usage monitoring*/
#define LV_USE_SYSMON 0
/*A terminal to display received characters*/
#define LV_USE_TERMINAL 0
/*Touch pad calibration with 4 points*/
#define LV_USE_TPCAL 0
#endif /*LV_EX_CONF_H*/
#endif /*End of "Content enable"*/