⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 param.h

📁 motorola自己开发的针对coldfire 5272的Dbug bootloader程序
💻 H
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -