L VD / Mbed OS DISCO-F746NG_MbedOs_LvGL_example

Dependencies:   BSP_DISCO_F746NG

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers lv_ex_conf.h Source File

lv_ex_conf.h

Go to the documentation of this file.
00001 /**
00002  * @file lv_ex_conf.h
00003  *
00004  */
00005 /*
00006  * COPY THIS FILE AS lv_ex_conf.h
00007  */
00008 
00009 #if 1 /*Set it to "1" to enable the content*/
00010 
00011 #ifndef LV_EX_CONF_H
00012 #define LV_EX_CONF_H
00013 
00014 
00015 /*******************
00016  * GENERAL SETTING
00017  *******************/
00018 #define LV_EX_PRINTF       0       /*Enable printf-ing data in demoes and examples*/
00019 #define LV_EX_KEYBOARD     0       /*Add PC keyboard support to some examples (`lv_drivers` repository is required)*/
00020 #define LV_EX_MOUSEWHEEL   0       /*Add 'encoder' (mouse wheel) support to some examples (`lv_drivers` repository is required)*/
00021 
00022 /*********************
00023  * DEMO USAGE
00024  *********************/
00025 
00026 /*Show some widget*/
00027 #define LV_USE_DEMO_WIDGETS        1
00028 #if LV_USE_DEMO_WIDGETS
00029 #define LV_DEMO_WIDGETS_SLIDESHOW  0
00030 #endif
00031 
00032 /*Printer demo, optimized for 800x480*/
00033 #define LV_USE_DEMO_PRINTER     0
00034 
00035 /*Demonstrate the usage of encoder and keyboard*/
00036 #define LV_USE_DEMO_KEYPAD_AND_ENCODER     0
00037 
00038 /*Benchmark your system*/
00039 #define LV_USE_DEMO_BENCHMARK   0
00040 
00041 /*Stress test for LVGL*/
00042 #define LV_USE_DEMO_STRESS      0
00043 
00044 #endif /*LV_EX_CONF_H*/
00045 
00046 #endif /*End of "Content enable"*/
00047