yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame^] | 1 | /***********************************************************************
|
| 2 | * Copyright (C) 2016, ZIXC Corporation.
|
| 3 | *
|
| 4 | * File Name: lcd_res_128*128.c
|
| 5 | * File Mark:
|
| 6 | * Description: contains BMP bytes array, using RGB565,pic size 128*128
|
| 7 | * Others: this file is in BOOTLOADER procedure.
|
| 8 | * Version: V1.0
|
| 9 | * Author: qihongfang
|
| 10 | * Date: 2017-09-22
|
| 11 | *
|
| 12 | * History 1:
|
| 13 | * Date:
|
| 14 | * Version:
|
| 15 | * Author:
|
| 16 | * Modification:
|
| 17 | *
|
| 18 | ***********************************************************************/
|
| 19 | #include "../include/board.h"
|
| 20 |
|
| 21 |
|
| 22 | /*R-5BIT,G-6BIT,B-5BIT:
|
| 23 | * 1st byte: R4 R3 R2 R1 R0 G5 G4 G3
|
| 24 | * 2nd byte: G2 G1 G0 B4 B3 B2 B1 B0
|
| 25 | * picture width: 128,picture height: 128
|
| 26 | */
|
| 27 | unsigned char bmp_128_128_zte[]={};
|
| 28 |
|
| 29 | unsigned char bmp_updating[]={};
|
| 30 |
|
| 31 | unsigned char bmp_updatesuccess[]={};
|
| 32 |
|
| 33 | unsigned char bmp_updatefailed[]={};
|
| 34 |
|
| 35 | unsigned char bmp_lowbattery[]={};
|
| 36 | unsigned char bmp_logo[]={};
|
| 37 |
|
| 38 | unsigned char bmp_charging[]={};
|
| 39 |
|
| 40 | unsigned char bmp_nobattery[]={};
|
| 41 |
|
| 42 |
|