c5509_usb.c
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2003 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) DDK 1.10.00.23 07-02-03 (ddk-b12)" */
  9. /*
  10.  * ======== c5509_usb.c ========
  11.  * This file defines the IOM_Fxns and interrupt dispatcher 
  12.  */
  13. #include <std.h>
  14. #include <iom.h>
  15. #include <_c5509_usb.h>
  16. #include <csl.h>
  17. #include <csl_usb.h>
  18. /*
  19.  *  ======== C5509_USB_fxns ========
  20.  *  This the mini-driver function table 
  21.  */
  22. IOM_Fxns C5509_USB_Fxns = {
  23.     _C5509_USB_mdBindDev,
  24.     IOM_UNBINDDEVNOTIMPL,
  25.     _C5509_USB_mdControlChan,
  26.     _C5509_USB_mdCreateChan,
  27.     IOM_DELETECHANNOTIMPL,
  28.     _C5509_USB_mdSubmitChan
  29. };
  30. /*
  31.  *  ======== C5509_USB_init ========
  32.  */
  33. Void C5509_USB_init(Void) {
  34.     /* do nothing */
  35. }