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

📄 confignet.h

📁 移植好的Ibm405ep bsp板极支持包
💻 H
字号:
/* configNet.h - Network configuration header file *//*******************************************************************************   This source and object code has been made available to you by IBM on an   AS-IS basis.   IT IS PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING THE WARRANTIES OF   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE OR OF NONINFRINGEMENT   OF THIRD PARTY RIGHTS.  IN NO EVENT SHALL IBM OR ITS LICENSORS BE LIABLE   FOR INCIDENTAL, CONSEQUENTIAL OR PUNITIVE DAMAGES.  IBM芐 OR ITS LICENSOR芐   DAMAGES FOR ANY CAUSE OF ACTION, WHETHER IN CONTRACT OR IN TORT, AT LAW OR   AT EQUITY, SHALL BE LIMITED TO A MAXIMUM OF $1,000 PER LICENSE.  No license   under IBM patents or patent applications is to be implied by the copyright   license.   Any user of this software should understand that neither IBM nor its   licensors will be responsible for any consequences resulting from the use   of this software.   Any person who transfers this source code or any derivative work must   include the IBM copyright notice, this paragraph, and the preceding two   paragraphs in the transferred software.   Any person who transfers this object code or any derivative work must   include the IBM copyright notice in the transferred software.   COPYRIGHT   I B M   CORPORATION 2000   LICENSED MATERIAL  -  PROGRAM PROPERTY OF  I B M"*******************************************************************************//* Copyright 1984-2001 Wind River Systems, Inc. *//*modification history--------------------01e,18jul02,mcg  added second EMAC for 405EP01d,25jul01,pmr  re-organized to allow for multiple device configuration01c,01may01,pmr  Changed INCLUDE_PCI_NETWORK to INCLUDE_LN97XEND.01b,21mar00,mcg  changes for ibmEmacEndBldLoadStr function01a,20sep99,mcg  created*/#ifndef INCconfigNeth#define INCconfigNeth#include "vxWorks.h"#include "end.h"/* * END structure for PCI Ethernet card */#ifdef INCLUDE_LN97XENDIMPORT  char sys97xLoadString[];#define LN_97X_LOAD_FUNC        ln97xEndLoad#define LN_97X_LOAD_STR_0       sys97xLoadStringIMPORT END_OBJ * LN_97X_LOAD_FUNC (char *, void *);#endif /* INCLUDE_LN97XEND *//* * END structure for integrated EMAC Ethernet */#ifdef INCLUDE_EMAC_NETWORKIMPORT  char sysEmacLoadString0[];IMPORT  char sysEmacLoadString1[];#define IBM_EMAC_LOAD_FUNC        ibmEmacEndLoad#define IBM_EMAC_LOAD_STR_0       sysEmacLoadString0#define IBM_EMAC_LOAD_STR_1       sysEmacLoadString1IMPORT END_OBJ * IBM_EMAC_LOAD_FUNC (char *, void *);#endif /* INCLUDE_EMAC_NETWORK */END_TBL_ENTRY endDevTbl [] ={#ifdef INCLUDE_EMAC_NETWORK    {0, IBM_EMAC_LOAD_FUNC, IBM_EMAC_LOAD_STR_0, TRUE, NULL, FALSE},    {1, IBM_EMAC_LOAD_FUNC, IBM_EMAC_LOAD_STR_1, TRUE, NULL, FALSE},#endif#ifdef INCLUDE_LN97XEND    {0, LN_97X_LOAD_FUNC, LN_97X_LOAD_STR_0, TRUE, NULL, FALSE},#endif    {0, END_TBL_END,        NULL,                0,    NULL, FALSE},};#endif /* INCconfigNeth */

⌨️ 快捷键说明

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