blob: 410f644faf299959376d8827e4cc2de1c2561e01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* I2C.h
*
* Created on: Jun 6, 2018
* Author: avi
*/
#ifndef DRIVERS_I2C_COMMUNICATION_I2C_H_
#define DRIVERS_I2C_COMMUNICATION_I2C_H_
uint32_t I2C_control(uint32_t I2C_ID, uint32_t Slave_Add, bool RW,uint32_t Byte2Write );
void Init_All_I2C();
#endif /* DRIVERS_I2C_COMMUNICATION_I2C_H_ */
|