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

📄 digitalphotoalbum_57qvga_images.c

📁 coldfire的mcf5329的程序
💻 C
字号:
#include "common.h"
#include "DigitalPhotoAlbum.h"

#include "Images_320_240_18bpp.h"
#include "innovation_320_240_18bpp.h"
#include "Orange_320_240_18bpp.h"
#include "people_320_240_18bpp.h"
#include "science_320_240_18bpp.h"

/******************************************************************************
 Public Functions
******************************************************************************/

/* The EVB allows for enough SDRAM memory space to download  up to 4
 * QVGA 18bpp images. If more images are added to the array, then the
 * images will not display correctly.
 */ 

void CreateImageArray(imageStruct *p_images)
{
	p_images->numImages = 4;
    p_images->imageArray[0] = (uint32)Images_320_240_18bpp;
    p_images->imageArray[1] = (uint32)innovation_320_240_18bpp;
    p_images->imageArray[2] = (uint32)Orange_320_240_18bpp;
    p_images->imageArray[3] = (uint32)people_320_240_18bpp;
//    p_images->imageArray[4] = (uint32)science_256_320_18bpp;
}// CreateImageArray 	

⌨️ 快捷键说明

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