digitalphotoalbum_vga_images.c
来自「coldfire的mcf5329的程序」· C语言 代码 · 共 25 行
C
25 行
#include "common.h"
#include "DigitalPhotoAlbum.h"
#include "Images_640_480_18bpp.h"
#include "innovation_640_480_18bpp.h"
#include "orange_640_480_18bpp.h"
//#include "people_640_480_18bpp.h"
//#include "science_640_480_18bpp.h"
/******************************************************************************
Public Functions
******************************************************************************/
/* The EVB allows for enough SDRAM memory space to download up to 2
* VGA 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 = 3;
p_images->imageArray[0] = (uint32)Images_640_480_18bpp;
p_images->imageArray[1] = (uint32)innovation_640_480_18bpp;
p_images->imageArray[2] = (uint32)orange_640_480_18bpp;
}// CreateImageArray
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?