📄 param.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 + -