⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bmp.c

📁 嵌入式系统
💻 C
字号:
/*********************************************************************************************
* File:	lcd.c
* Author:	embest	
* Desc:	LCD control and display functions
* History:	
*********************************************************************************************/
#include "bmp.h"
#include "def.h"
#include "lcd.h"

/*********************************************************************************************
* name:		bitmap_view320x240x256
* func:		display bitmap
* para:		pBuffer -- input, bitmap data
* ret:		none
* modify:
* comment:		
*********************************************************************************************/
void bitmap_view320x240x256(UINT8T *pBuffer)
{
	UINT32T i, j;
	UINT32T *pView = (UINT32T*)g_unLcdActiveBuffer;

	for (i = 0; i < SCR_XSIZE * SCR_YSIZE / 4; i++)
	{
		*pView = ((*pBuffer) << 24) + ((*(pBuffer+1)) << 16) + ((*(pBuffer+2)) << 8) + (*(pBuffer+3));
		pView++;
		pBuffer += 4;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -