diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2019-04-29 10:26:32 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2019-04-29 10:26:32 -0400 |
commit | ea4ee734b20dbc5511beb9ec400fb7ffe52ea87e (patch) | |
tree | e2179f245048e1148095c4f32be6159a4136df32 /i2c.h | |
parent | f8887251a7dd158490c7bcb3ba4cd7757fb7f2f7 (diff) |
removed submodule so files can be edited
Diffstat (limited to 'i2c.h')
-rw-r--r-- | i2c.h | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -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_ */ + |