aboutsummaryrefslogtreecommitdiffstats
path: root/i2c.h
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2019-04-30 12:29:06 -0400
committertcsullivan <tullivan99@gmail.com>2019-04-30 12:29:06 -0400
commit624576f5fa5e839469dd4454ff698b11342a39b8 (patch)
tree9c29927de6926cf5294e1e640667dc8c57df580b /i2c.h
parent569dbb6c2d5eb852d2032774061f84a8f16b5666 (diff)
Made things work
Diffstat (limited to 'i2c.h')
-rwxr-xr-xi2c.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/i2c.h b/i2c.h
new file mode 100755
index 0000000..987d109
--- /dev/null
+++ b/i2c.h
@@ -0,0 +1,26 @@
+/*
+ * i2c.h
+ *
+ * Created on: 28 de abr de 2017
+ * Author: helio.capella
+ */
+
+#ifndef I2C_H_
+#define I2C_H_
+
+#include <stdint.h>
+
+uint8_t *PTxData; // Pointer to TX data
+uint8_t *PRxData; // Pointer to RX data
+
+uint8_t TxByteCtr;
+uint8_t RxByteCtr;
+
+//uint8_t isRx;
+
+void I2C_init(uint8_t slaveAddress);
+void I2C_write(uint8_t ByteCtr, uint8_t *TxData);
+void I2C_read(uint8_t ByteCtr, volatile uint8_t *RxData);
+
+#endif /* I2C_H_ */
+