代码拉取完成,页面将自动刷新
同步操作将从 gzbkey/LingLongGUI 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
* Copyright 2021-2022 Ou Jianbo 59935554@qq.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* additional license
* If you use this software to write secondary development type products,
* must be released under GPL compatible free software license or commercial
* license.
*/
#ifndef _LL_CONFIG_H_
#define _LL_CONFIG_H_
#include <stdlib.h>
#include "stdbool.h"
#include "stdint.h"
/***********************************控件内存占用定义*********************************************/
#define LL_FONT_NAME_LENGTH_MAX 48 //byte 字体名称长度长度最大值
#define LL_BUTTON_TEXT_LENGTH_MAX 16 //byte button显示文本长度最大值
#define LL_LINEEDIT_TEXT_LENGTH_MAX 48 //byte lineEdit显示文本长度最大值
#define LL_CHECKBOX_TEXT_LENGTH_MAX 16 //byte checkBox显示文本长度最大值
#define LL_COMBOBOX_ITEM_MAX 8 //byte comboBox下拉项数量最大值
#define LL_COMBOBOX_TEXT_LENGTH_MAX 16 //byte comboBox显示文本长度最大值
/***********************************控件性能定义*********************************************/
#define LL_MOVE_START_PIXEL 3 //滑动类控件,滑动启动偏移最小值
/***********************************屏幕参数定义*********************************************/
////颜色位数
#define CONFIG_COLOR_DEPTH 16 // 1 8 16 24 32
//屏幕宽度像素
#define LL_MONITOR_WIDTH 320
//屏幕高度像素
#define LL_MONITOR_HEIGHT 240
extern uint8_t cfgColorDepth;
extern uint16_t cfgMonitorWidth;
extern uint16_t cfgMonitorHeight;
#define llColor uint16_t
//#if CONFIG_COLOR_DEPTH == 1
//#define llColor uint8_t
//#elif CONFIG_COLOR_DEPTH == 8
//#define llColor uint8_t
//#elif CONFIG_COLOR_DEPTH == 16
//#define llColor uint16_t
//#elif CONFIG_COLOR_DEPTH == 24
//#define llColor uint32_t
//#elif CONFIG_COLOR_DEPTH == 32
//#define llColor uint32_t
//#endif
/***********************************内存定义*********************************************/
#define MEM_SIZE (12*1024)
//双缓冲
#define USE_DOUBLE_BUFFERING 0
void llCfgDoubleBufferStart(bool isCopy);
void llCfgDoubleBufferEnd(bool isRefreshNow);
//图片显示的缓冲大小
#define IMAGE_READ_BYTE_MAX 1024
/***********************************调试输出*********************************************/
#define LLPRINT //printf
#define LLPRINT_NUM(str,num) //printf("%s:%d\n",str,num)
#define LLPRINT_STR(str) //printf("%s\n",str)
#define LLPRINT_POINT(str,pos) //printf("%s:%d,%d\n",str,pos.x,pos.y)
#define LLPRINT_GEOMETRY(str,geometry) //printf("%s:%d,%d,%d,%d\n",str,geometry.x,geometry.y,geometry.width,geometry.height)
/***********************************屏幕驱动*********************************************/
#define USE_USER_FILL_MULTIPLE_COLORS 1
//左上角为0,0
void llCfgSetPoint(int16_t x,int16_t y,llColor color);
void llCfgFillSingleColor(int16_t x0,int16_t y0,int16_t x1,int16_t y1,llColor color);
#if USE_USER_FILL_MULTIPLE_COLORS == 1
void llCfgFillMultipleColors(int16_t x0,int16_t y0,int16_t x1,int16_t y1,llColor *color);
#endif
/***********************************触摸驱动*********************************************/
bool llCfgClickGetPoint(int16_t *x,int16_t *y);
/***********************************定时器*********************************************/
// 开定时器
// 调用头文件 #include "LL_Gui.h"
// 定时器周期性运行 llGuiTick(ms);
/***********************************外部储存接口*********************************************/
void llExFlashInit(void);
void llReadExFlash(uint32_t addr,uint8_t* pBuffer,uint16_t length);
/***********************************蜂鸣器接口*********************************************/
void llBuzzerBeep(void);
/***********************************RTC接口*********************************************/
void llGetRtc(uint8_t *readBuf);
void llSetRtc(uint8_t *writeBuf);
#define USE_IMAGE_ARRAY_BUFFER 0
#endif //_LL_CONFIG_H_
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。