1234567891011121314151617181920212223 |
- /****************************************Copyright (c)**************************************************
- * File Name: ICON.h
- * Function Describe: Header file for Lcd.c
- * Explain:
- * Writer: ShiLiangWen
- * Date: 2016-1-8
- ********************************************************************************************************/
- #ifndef __ICON_H
- #define __ICON_H
- //-------------------------------------------------------------------------------------------------------
- #include "stm32f10x.h"
- typedef struct _HEADGRAY
- {
- unsigned char scan;
- unsigned char gray;
- unsigned short w;
- unsigned short h;
- }HEADGRAY;
- extern const unsigned char g_cucPalette[];//µ÷É«°å
- extern const unsigned char gImage_XinHao[];
- #endif
|