From 7a8c601eec433f7c75d3291d64bb3d41fe50c8ae Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Tue, 3 Dec 2024 21:52:59 +0100 Subject: Use custom types --- include/i2c.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/i2c.h') diff --git a/include/i2c.h b/include/i2c.h index 18fa5e9..a43744a 100644 --- a/include/i2c.h +++ b/include/i2c.h @@ -1,7 +1,7 @@ #ifndef I2C_H #define I2C_H -#include +#include #define NACK 0 #define ACK 1 @@ -16,9 +16,9 @@ void i2c_stop_condition(void); void -i2c_send(uint8_t b); +i2c_send(u8 b); uint8_t -i2c_recv(uint8_t ack); +i2c_recv(u8 ack); #endif // I2C_H -- cgit v1.2.3