mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-25 15:16:53 +01:00
17 lines
288 B
C
17 lines
288 B
C
#ifndef I2C_H__
|
|
#define I2C_H__
|
|
|
|
|
|
#include "sys.h"
|
|
|
|
|
|
bool i2c_busy (void);
|
|
bool i2c_done (void);
|
|
bool i2c_failed (void);
|
|
void i2c_trx (uint8_t address, uint8_t *data, uint8_t length, bool write, bool generate_stop);
|
|
void i2c_init (void);
|
|
void process_i2c (void);
|
|
|
|
|
|
#endif
|