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

📄 sysend.c

📁 4510b的vxworks的BSP
💻 C
字号:
/* sysEnd.c - System Enhanced Network interface support library */

/* Copyright 1997-1998 Wind River Systems, Inc. */

#include "copyright_wrs.h"

/*
modification history
--------------------
01a,04mar98,jpd  created, based on version 01c from cma220.
*/

/*
DESCRIPTION
This file contains the board-specific routines for Ethernet adapter
initialisation.


SEE ALSO: ifLib
*/

#include "vxWorks.h"
#include "intLib.h"
#include "config.h"

#ifdef INCLUDE_END

/*******************************************************************************
*
* sysLanIntEnable - enable network driver interrupts
*
* This routine enables network driver interrupts.  This may involve
* operations on interrupt control hardware.
*
* RETURNS: OK or ERROR for invalid arguments.
*/

STATUS sysLanIntEnable
    (
    int	level		/* level number */
    )
    {
    return intEnable(level);
    }

/*******************************************************************************
*
* sysLanIntDisable - disable network driver interrupts
*
* This routine disables network driver interrupts.  This may involve
* operations on interrupt control hardware.
*
* RETURNS: OK or ERROR for invalid arguments.
*/

STATUS sysLanIntDisable
    (
    int	level		/* level number */
    )
    {
    return intDisable(level);
    }

#endif /* INCLUDE_END */

⌨️ 快捷键说明

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