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.
10 lines
237 B
10 lines
237 B
13 years ago
|
#ifndef __I2C_H
|
||
|
#define __I2C_H
|
||
|
|
||
13 years ago
|
typedef int rtlsdr_dev_t;
|
||
|
|
||
|
int rtlsdr_i2c_write(rtlsdr_dev_t *dev, uint8_t i2c_addr, uint8_t *buffer, int len);
|
||
|
int rtlsdr_i2c_read(rtlsdr_dev_t *dev, uint8_t i2c_addr, uint8_t *buffer, int len);
|
||
13 years ago
|
|
||
|
#endif
|