confignet.h

来自「MPC8260的vxworks BSP源码」· C头文件 代码 · 共 52 行

H
52
字号
/* configNet.h - network configuration header *//* Copyright 1984-1999 Wind River Systems, Inc. *//*modification history--------------------01b,15jul99,ms_  make compliant with our coding standards01a,05apr99,cn 	written from ads860/configNet.h, 01f.*/ #ifndef INCconfigNeth#define INCconfigNeth#include "vxWorks.h"#include "end.h"#include "miiLib.h"/* defines */ #ifdef INCLUDE_MOT_FCC/* Motorola Fast Communication Controller */#define MOT_FCC_LOAD_FUNC	sysMotFccEndLoad/*  * the default initialization string for the FCC is built in sysMotFccEnd.c */#define MOT_FCC_LOAD_STRING ""IMPORT END_OBJ* MOT_FCC_LOAD_FUNC (char *, void*);#endif /* INCLUDE_MOT_FCC *//* max number of SENS ipAttachments we can have */ #ifndef IP_MAX_UNITS#   define IP_MAX_UNITS (NELEMENTS (endDevTbl) - 1)#endif END_TBL_ENTRY endDevTbl [] ={#ifdef INCLUDE_MOT_FCC    { 0, MOT_FCC_LOAD_FUNC, MOT_FCC_LOAD_STRING, 1, NULL, FALSE},#endif /* INCLUDE_MOT_FCC */    { 0, END_TBL_END, NULL, 0, NULL, FALSE},};#endif /* INCconfigNeth */

⌨️ 快捷键说明

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