usblib.h
上传用户:hank9955
上传日期:2022-08-05
资源大小:14k
文件大小:1k
源码类别:

USB编程

开发平台:

C/C++

  1. /****************************************************************
  2.  NAME: usblib.h
  3.  DESC: 
  4.  HISTORY:
  5.  Mar.25.2002:purnnamu: ported for S3C2410X.
  6.  ****************************************************************/
  7. #ifndef __USBLIB_H__
  8. #define __USBLIB_H__
  9. #include "2410usb.h"
  10. #define PWR_REG_DEFAULT_VALUE (DISABLE_SUSPEND)
  11. void ConfigUsbd(void);
  12. void ReconfigUsbd(void);
  13. void RdPktEp0(U8 *buf,int num);
  14. void WrPktEp0(U8 *buf,int num);
  15. void WrByteEp0(U8 value);
  16. void WrPktEp1(U8 *buf,int num);
  17. void WrPktEp2(U8 *buf,int num);
  18. void RdPktEp3(U8 *buf,int num);
  19. void RdPktEp4(U8 *buf,int num);
  20. void ConfigEp3IntMode(void);
  21. void ConfigEp3DmaMode(U32 bufAddr,U32 count);
  22. #endif /*__USBLIB_H__*/