i2c-algo-pca.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_I2C_ALGO_PCA_H
  2. #define _LINUX_I2C_ALGO_PCA_H
  3. struct i2c_algo_pca_data {
  4. int  (*get_own) (struct i2c_algo_pca_data *adap); /* Obtain own address */
  5. int  (*get_clock) (struct i2c_algo_pca_data *adap);
  6. void (*write_byte) (struct i2c_algo_pca_data *adap, int reg, int val);
  7. int  (*read_byte) (struct i2c_algo_pca_data *adap, int reg);
  8. int  (*wait_for_interrupt) (struct i2c_algo_pca_data *adap);
  9. };
  10. #define I2C_PCA_ADAP_MAX 16
  11. int i2c_pca_add_bus(struct i2c_adapter *);
  12. int i2c_pca_del_bus(struct i2c_adapter *);
  13. #endif /* _LINUX_I2C_ALGO_PCA_H */