mirror of
https://github.com/m-labs/artiq.git
synced 2025-01-16 05:36:41 +08:00
11 lines
187 B
C
11 lines
187 B
C
#ifndef __I2C_H
|
|
#define __I2C_H
|
|
|
|
void i2c_init(int busno);
|
|
void i2c_start(int busno);
|
|
void i2c_stop(int busno);
|
|
int i2c_write(int busno, int b);
|
|
int i2c_read(int busno, int ack);
|
|
|
|
#endif
|