param.h

来自「motorola自己开发的针对coldfire 5272的Dbug bootlo」· C头文件 代码 · 共 32 行

H
32
字号
/*
 * File:		dbug/proj/common/param.h
 * Purpose:		Definitions for common parameters
 *
 * Notes:
 */

#ifndef _PARAM_H
#define _PARAM_H

/********************************************************************/

#define FILENAME_SIZE	(40)

/* 
 * Structure definition for the Parameters 
 */
typedef struct
{
	uint32	baud;
	uint8	client[4];
	uint8	server[4];
	uint8	gateway[4];
	uint8	netmask[4];
	uint8	netcfg[4];
	uint8	ethaddr[6];
	char	filename[FILENAME_SIZE];
} PARAM;

/********************************************************************/

#endif /* _PARAM_H */

⌨️ 快捷键说明

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