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

📄 dongle.h

📁 网络驱动开发
💻 H
字号:
/*
 ************************************************************************
 *
 *	DONGLE.h
 *
 *
 * Portions Copyright (C) 1996-1998 National Semiconductor Corp.
 * All rights reserved.
 * Copyright (C) 1996-1998 Microsoft Corporation. All Rights Reserved.
 *
 *
 *
 *************************************************************************
 */

#ifndef DONGLE_H
	#define DONGLE_H


	#define NDIS_IRDA_SPEED_2400       (UINT)(1 << 0)   // SLOW IR ...
	#define NDIS_IRDA_SPEED_9600       (UINT)(1 << 1)
	#define NDIS_IRDA_SPEED_19200      (UINT)(1 << 2)
	#define NDIS_IRDA_SPEED_38400      (UINT)(1 << 3)
	#define NDIS_IRDA_SPEED_57600      (UINT)(1 << 4)
	#define NDIS_IRDA_SPEED_115200     (UINT)(1 << 5)
	#define NDIS_IRDA_SPEED_576K       (UINT)(1 << 6)   // MEDIUM IR ...
	#define NDIS_IRDA_SPEED_1152K      (UINT)(1 << 7)
	#define NDIS_IRDA_SPEED_4M         (UINT)(1 << 8)   // FAST IR


	typedef struct dongleCapabilities {

			/*
			 *  This is a mask of NDIS_IRDA_SPEED_xxx bit values.
			 *
			 */
			UINT supportedSpeedsMask;

			/*
			 *  Time (in microseconds) that must transpire between
			 *  a transmit and the next receive.
			 */
			UINT turnAroundTime_usec;

			/*
			 *  Extra BOF (Beginning Of Frame) characters required
			 *  at the start of each received frame.
			 */
			UINT extraBOFsRequired;

	} dongleCapabilities;


#endif DONGLE_H	


⌨️ 快捷键说明

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