_iic.h
上传用户: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. #ifndef __IIC_H  
  10. #define __IIC_H
  11. #include <std.h>
  12. #include <csl_stdinc.h>
  13. #include <csl_i2c.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. void _IIC_write(I2C_Handle hI2C,
  18.               Uint8   devAddress,
  19.               Uint32  subAddress,
  20.               Uint8   *data,
  21.               Uint16  numBytes
  22.               );
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif