加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lv_ex_conf_templ.h 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
kisvegabor 提交于 2019-07-05 05:41 . revert 74c0b52
/**
* @file lv_ex_conf.h
*
*/
/*
* COPY THIS FILE AS lv_ex_conf.h
*/
#if 0 /*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 0
#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 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"*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化