forked from lvgl/lv_port_win_codeblocks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lv_ex_conf.h
51 lines (37 loc) · 1005 Bytes
/
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
/**
* @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*/
/*******************
* TEST USAGE
*******************/
#define USE_LV_TESTS 1
/*******************
* TUTORIAL USAGE
*******************/
#define USE_LV_TUTORIALS 1
/*********************
* APPLICATION USAGE
*********************/
/* Test the graphical performance of your MCU
* with different settings*/
#define USE_LV_BENCHMARK 1
/*A demo application with Keyboard, Text area, List and Chart
* placed on Tab view */
#define USE_LV_DEMO 1
#if USE_LV_DEMO
#define LV_DEMO_WALLPAPER 1 /*Create a wallpaper too*/
#endif
/*MCU and memory usage monitoring*/
#define USE_LV_SYSMON 1
/*A terminal to display received characters*/
#define USE_LV_TERMINAL 1
/*Touch pad calibration with 4 points*/
#define USE_LV_TPCAL 1
#endif /*LV_EX_CONF_H*/