You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
rtl-sdr/src/i2c.h

7 lines
166 B

#ifndef __I2C_H
#define __I2C_H
int rtl_i2c_write(uint8_t i2c_addr, uint8_t *buffer, int len);
int rtl_i2c_read(uint8_t i2c_addr, uint8_t *buffer, int len);
#endif