13 lines
235 B
C
13 lines
235 B
C
#ifndef I2C_FUNCTIONS_H
|
|
#define I2C_FUNCTIONS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void i2c_delay();
|
|
void i2c_start();
|
|
void i2c_stop();
|
|
void i2c_send_byte(uint8_t data);
|
|
void i2c_send_bytes(const uint8_t *data, uint8_t length);
|
|
|
|
#endif
|