osk.h.svn-base

来自「realtek的8186芯片ADSL路由AP源代码」· SVN-BASE 代码 · 共 39 行

SVN-BASE
39
字号
/* OSK related definition. * */#ifndef IMAGEHDR_H#define IMAGEHDR_H typedef struct {	unsigned int	key;		/* magic key */#define BOOT_IMAGE             0xB0010001#define CONFIG_IMAGE           0xCF010002#define APPLICATION_IMAGE      0xA0000003#define BOOTPTABLE             0xB0AB0004	unsigned int	address;	/* image loading DRAM address */	unsigned int	length;		/* image length */	unsigned int	entry;		/* starting point of program */	unsigned short	chksum;		/* chksum of */		unsigned char	type;#define KEEPHEADER    0x01   /* set save header to flash */#define FLASHIMAGE    0x02   /* flash image */#define COMPRESSHEADER    0x04       /* compress header */#define MULTIHEADER       0x08       /* multiple image header */#define IMAGEMATCH        0x10       /* match image name before upgrade */			unsigned char	   date[25];  /* sting format include 24 + null */	unsigned char	   version[16];        unsigned int  *flashp;  /* pointer to flash address */} IMGHDR;#define HEADERSIZE		64#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?