15 lines
281 B
C
15 lines
281 B
C
|
|
||
|
#ifndef _GPIO_I2C_H
|
||
|
#define _GPIO_I2C_H
|
||
|
|
||
|
|
||
|
#define GPIO_I2C_READ 0x01
|
||
|
#define GPIO_I2C_WRITE 0x02
|
||
|
|
||
|
unsigned char gpio_i2c_read(unsigned char devaddress, unsigned char address);
|
||
|
void gpio_i2c_write(unsigned char devaddress, unsigned char address, unsigned char value);
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|