1 Star 2 Fork 2

miaoguoqiang / UGUI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ugui_config.h 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
miaoguoqiang 提交于 2020-01-14 15:35 . fix some bugs
#ifndef __UGUI_CONFIG_H
#define __UGUI_CONFIG_H
/* -------------------------------------------------------------------------------- */
/* -- CONFIG SECTION -- */
/* -------------------------------------------------------------------------------- */
//#define USE_MULTITASKING
/* Enable color mode */
#define USE_COLOR_RGB888 // RGB = 0xFF,0xFF,0xFF
//#define USE_COLOR_RGB565 // RGB = 0bRRRRRGGGGGGBBBBB
/* Enable needed fonts here */
//#define USE_FONT_4X6
//#define USE_FONT_5X8
//#define USE_FONT_5X12
//#define USE_FONT_6X8
//#define USE_FONT_6X10
//#define USE_FONT_7X12
//#define USE_FONT_8X8
//#define USE_FONT_8X12_CYRILLIC
//#define USE_FONT_8X12
//#define USE_FONT_8X12
//#define USE_FONT_8X14
//#define USE_FONT_10X16
//#define USE_FONT_12X16
//#define USE_FONT_12X20
//#define USE_FONT_16X26
//#define USE_FONT_22X36
//#define USE_FONT_24X40
//#define USE_FONT_32X53
/* Specify platform-dependent integer types here */
#define __UG_FONT_DATA const
typedef unsigned char UG_U8;
typedef signed char UG_S8;
typedef unsigned short UG_U16;
typedef signed short UG_S16;
typedef unsigned int UG_U32;
typedef signed int UG_S32;
/* Example for dsPIC33
typedef unsigned char UG_U8;
typedef signed char UG_S8;
typedef unsigned int UG_U16;
typedef signed int UG_S16;
typedef unsigned long int UG_U32;
typedef signed long int UG_S32;
*/
/* -------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------- */
/* Feature enablers */
#define USE_PRERENDER_EVENT
#define USE_POSTRENDER_EVENT
#endif
C
1
https://gitee.com/smartelec_056/UGUI.git
git@gitee.com:smartelec_056/UGUI.git
smartelec_056
UGUI
UGUI
master

搜索帮助