加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
LL_Config_SDL.c 4.06 KB
一键复制 编辑 原始数据 按行查看 历史
gzbkey 提交于 2021-01-26 14:02 . 1、移植接口修改
/*
* Copyright 2021 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.
*/
#include "LL_Config.h"
#include "string.h"
#include "freeRtosHeap4.h"
#include <time.h>
uint8_t cfgButtonTextLengthMax = LLBUTTON_TEXT_LENGTH_MAX;
uint8_t cfgLineEditTextLengthMax = LLLINEEDIT_TEXT_LENGTH_MAX;
uint8_t cfgCheckBoxTextLengthMax = LLCHECKBOX_TEXT_LENGTH_MAX;
uint8_t cfgColorDepth = CONFIG_COLOR_DEPTH;
uint16_t cfgMonitorWidth = 0;
uint16_t cfgMonitorHeight = 0;
#if USE_DOUBLE_BUFFERING == 1
uint32_t *lcdFrontBuf=LL_LCD_BUF1_POINTER;
uint32_t *lcdBackBuf=LL_LCD_BUF2_POINTER;
#endif
void llCfgSetLcdBufAddr(uint32_t *addr)
{
#if USE_DOUBLE_BUFFERING == 1
lcdSetBufferAddr(addr);
#endif
}
void llCfgSetLcdSrcAddr(uint32_t *addr)
{
#if USE_DOUBLE_BUFFERING == 1
lcdSetSrcAddr(addr);
#endif
}
void llCfgLcdCopyFront2Back(void)
{
#if USE_DOUBLE_BUFFERING == 1
// memcpy(lcdBackBuf,lcdFrontBuf,SDRAM_LCD_SIZE);
uint64_t i;
for(i=0;i<SDRAM_LCD_SIZE;i++)
{
lcdBackBuf[i]=lcdFrontBuf[i];
}
#endif
}
bool llCfgClickGetPoint(int16_t *x,int16_t *y)
{
return VT_Mouse_Get_Point(x,y);
}
void llCfgSetPoint(int16_t x,int16_t y,llColor color)
{
VT_Set_Point(x,y,color);
}
llColor llCfgGetPoint(int16_t x,int16_t y)
{
return VT_Get_Point(x,y);
}
void llCfgFillSingleColor(int16_t x0,int16_t y0,int16_t x1,int16_t y1,llColor color)
{
VT_Fill_Single_Color(x0,y0,x1,y1,color);
}
void *llMalloc(uint32_t size)
{
return pvPortMalloc(size);
}
void llFree(void *p)
{
vPortFree(p);
p=NULL;
}
void *llRealloc(void *ptr,uint32_t newSize)
{
void *new_addr=NULL;
if(ptr)
{
if(newSize!=0)
{
new_addr=llMalloc(newSize);
if(new_addr!=NULL)
{
memcpy(new_addr,ptr,newSize);
llFree(ptr);
}
}
}
else
{
if(newSize!=0)
{
new_addr=llMalloc(newSize);
}
}
return new_addr;
}
void llExFlashInit(void)
{
}
void llReadExFlash(uint32_t addr,uint8_t* pBuffer,uint16_t length)
{
flashRead(pBuffer,addr,length);
}
void llBuzzerBeep(void)
{
}
/***************************************************************************//**
* @fn void llGetRtc(uint8_t *readBuf)
* @brief 读取年月日时分秒周
* @param *readBuf yy yy mm dd hh mm ss ww
* @return void
* @version V0.1
* @date
* @details 数据用16进制储存,2021年 yyyy=0x07E5
******************************************************************************/
void llGetRtc(uint8_t *readBuf)
{
time_t t;
struct tm * lt;
time (&t);
lt = localtime (&t);
readBuf[0]=((lt->tm_year+1900)>>8)&0xFF;
readBuf[1]=(lt->tm_year+1900)&0xFF;
readBuf[2]=(lt->tm_mon+1)&0xFF;
readBuf[3]=lt->tm_mday&0xFF;
readBuf[4]=lt->tm_hour&0xFF;
readBuf[5]=lt->tm_min&0xFF;
readBuf[6]=lt->tm_sec&0xFF;
readBuf[7]=lt->tm_wday&0xFF;
}
/***************************************************************************//**
* @fn void llSetRtc(uint8_t *writeBuf)
* @brief 写入年月日时分秒
* @param *writeBuf yy yy mm dd hh mm ss
* @return void
* @version V0.1
* @date
* @details 数据用16进制储存,2021年 yyyy=0x07E5
******************************************************************************/
void llSetRtc(uint8_t *writeBuf)
{
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化