usbtest_params.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.11.00.00 11-04-03 (ddk-b13)" */
  9. /*
  10.  *  ======== usbtest_params.c ========
  11.  *  C5509_USB IOM default driver parameters
  12.  */
  13. #include <std.h>
  14. #include <c5509_usb.h>
  15. extern C5509_USB_DeviceConfig myDeviceConfig;  /* device configuration */
  16. extern C5509_USB_IfcConfig myIfcConfig; /* USB endpoint configuration */
  17. /*
  18.  *  ======== usbDevParams ========
  19.  *  Device configuration structure.
  20.  *  Application program must correctly initialize devParams structure.
  21.  *  It is passed to C5509_USB_mdBindDev() to initialize the usb device.
  22.  */
  23. C5509_USB_DevParams usbDevParams = {
  24.     C5509_USB_VERSION_1,         /* version number 1 */
  25.     C5509_USB_IER0MASKDEFAULT,   /* ier0mask=1 mask self(USB) intr */
  26.     C5509_USB_IER1MASKDEFAULT,   /* ier1mask=1         "           */
  27.     C5509_USB_INCLK12MHZ,        /* inclk, input clock is 12 Mhz */
  28.     C5509_USB_PLLDIVDEFAULT,     /* plldiv, PLL divide value = 0 */
  29.     C5509_USB_PSOFTMRCNTDEFAULT, /* pSofTmrCnt = 128 */
  30.     &myDeviceConfig,             /* USB device configuration */
  31.     &myIfcConfig                 /* USB interface endpoints configuration */
  32. };