usbtcdpdiusbd12evallib.h

来自「IXP425的BSP代码」· C头文件 代码 · 共 59 行

H
59
字号
/* usbTcdPdiusbd12EvalLib.h - Defines interface to Philips usbTcdPdiusbd12Lib.c *//* Copyright 2000 Wind River Systems, Inc. *//*Modification history--------------------01a,05aug99,rcb  First.*//*DESCRIPTIONDefines the interface to the USB TCD (target controller driver) for the PhilipsPDIUSBD12 evaluation board.*/#ifndef __INCusbTcdPdiusbd12EvalLibh#define __INCusbTcdPdiusbd12EvalLibh#ifdef	__cplusplusextern "C" {#endif/* typedefs *//* USB_TCD_PDIUSBD12_PARAMS * * The <tcdParam> to the USB_TCD_ATTACH function for this TCD must be a pointer * to the following structure.	The caller must initialize the structure with the * correct parameters for the hardware to be attached. */typedef struct usb_tcd_pdiusbd12_params    {    UINT32 ioBase;		    /* Base I/O address range */    UINT16 irq; 		    /* IRQ channel (e.g., 5 = IRQ5) */    UINT16 dma; 		    /* DMA channel (e.g., 3 = DMA3) */    } USB_TCD_PDIUSBD12_PARAMS, *pUSB_TCD_PDIUSBD12_PARAMS;/* function prototypes *//* Primary TCD entry point */STATUS usbTcdPdiusbd12EvalExec (pVOID pTrb);#ifdef	__cplusplus}#endif#endif	/* __INCusbTcdPdiusbd12EvalLibh *//* End of file. */

⌨️ 快捷键说明

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