/*********************************************************************** | |
* Copyright (C) 2016, ZIXC Corporation. | |
* | |
* File Name: lcd_res_128*128.c | |
* File Mark: | |
* Description: contains BMP bytes array, using RGB565,pic size 128*128 | |
* Others: this file is in BOOTLOADER procedure. | |
* Version: V1.0 | |
* Author: qihongfang | |
* Date: 2017-09-22 | |
* | |
* History 1: | |
* Date: | |
* Version: | |
* Author: | |
* Modification: | |
* | |
***********************************************************************/ | |
#include "../include/board.h" | |
/*R-5BIT,G-6BIT,B-5BIT: | |
* 1st byte: R4 R3 R2 R1 R0 G5 G4 G3 | |
* 2nd byte: G2 G1 G0 B4 B3 B2 B1 B0 | |
* picture width: 128,picture height: 128 | |
*/ | |
unsigned char bmp_128_128_zte[]={}; | |
unsigned char bmp_updating[]={}; | |
unsigned char bmp_updatesuccess[]={}; | |
unsigned char bmp_updatefailed[]={}; | |
unsigned char bmp_lowbattery[]={}; | |
unsigned char bmp_logo[]={}; | |
unsigned char bmp_charging[]={}; | |
unsigned char bmp_nobattery[]={}; | |