1 Star 0 Fork 112

单车/LingLongGUI

forked from gzbkey/LingLongGUI 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
LL_Config_swm32sNano.c 4.89 KB
一键复制 编辑 原始数据 按行查看 历史
gzbkey 提交于 2021-07-27 17:10 . 1、配合llguiEx修改函数名称
/*
* 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 "gt9xx.h"
#include "ns2009.h"
#include "lcd.h"
#include "freeRtosHeap4.h"
#include "w25qxx.h"
//#include "buzzer.h"
#include "setDefine.h"
//#include "bm8563.h"
#include "LL_User.h"
#include "iic.h"
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
uint64_t i;
for(i=0;i<SDRAM_LCD_SIZE;i++)
{
lcdBackBuf[i]=lcdFrontBuf[i];
}
#endif
}
bool llCfgClickGetPoint(int16_t *x,int16_t *y)
{
bool touchState=false;
uint16_t rx;
uint16_t ry;
touchState=ns2009_scan(0,&rx,&ry);
*x=rx;
*y=ry;
if((touchState!=0)&&(((rx!=0xffff)&&(ry!=0xffff))||((rx!=0)&&(ry!=0))))
{
touchState=true;
}
else
{
touchState=false;
*x=0xffff;
*y=0xffff;
}
return touchState;
}
void llCfgSetPoint(int16_t x,int16_t y,llColor color)
{
lcdSetPoint(x,y,color);
}
llColor llCfgGetPoint(int16_t x,int16_t y)
{
return lcdGetPoint(x,y);
}
void llCfgFillSingleColor(int16_t x0,int16_t y0,int16_t x1,int16_t y1,llColor color)
{
lcdFill(x0,y0,x1,y1,color);
}
#if USE_USER_FILL_MULTIPLE_COLORS == 1
void llCfgFillMultipleColors(int16_t x0,int16_t y0,int16_t x1,int16_t y1,llColor *color)
{
uint16_t height,width;
uint16_t i,j,n;
width=x1-x0+1;
height=y1-y0+1;
for(i=0; i<height; i++)
{
j=0;
if(x0%2)
{
llSetPoint(x0+j,y0+i,color[i*width+j]);
j++;
}
n=(width-j)/2;
while(n>0)
{
lcdSetMultiPoint(x0+j,y0+i,&color[i*width+j]);
j+=2;
n--;
}
n=(width-j)%2;
if(n>0)
{
llSetPoint(x0+j,y0+i,color[i*width+j]);
}
}
}
#endif
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)
{
#if USE_IMAGE_ARRAY_BUFFER == 0
uint16_t i=0;
uint8_t pBuffer[1024];
//自动复制nor到sdram
for(i=0; i<1024; i++)
{
w25qxxRead(pBuffer,(i*1024),1024);
sdram_8bitWrite(SDRAM_NOR_ADDR+(i*1024),pBuffer,1024);
}
#endif
}
void llReadExFlash(uint32_t addr,uint8_t* pBuffer,uint16_t length)
{
#if USE_IMAGE_ARRAY_BUFFER == 0
sdram_8bitRead(SDRAM_NOR_ADDR+addr,pBuffer,length);
#else
memcpy(pBuffer,&imageArrayBuffer[addr],length);
#endif
}
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)
{
}
/***************************************************************************//**
* @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 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/zzmio/LingLongGUI.git
git@gitee.com:zzmio/LingLongGUI.git
zzmio
LingLongGUI
LingLongGUI
master

搜索帮助