📄 digitalphotoalbum_vga_images.c
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -