Data transfers functions.
More...
|
void | I2C_SendData (I2C_TypeDef *I2Cx, uint8_t Data) |
| Sends a data byte through the I2Cx peripheral. More...
|
|
uint8_t | I2C_ReceiveData (I2C_TypeDef *I2Cx) |
| Returns the most recent received data by the I2Cx peripheral. More...
|
|
Data transfers functions.
===============================================================================
##### Data transfers functions #####
===============================================================================
uint8_t I2C_ReceiveData |
( |
I2C_TypeDef * |
I2Cx | ) |
|
Returns the most recent received data by the I2Cx peripheral.
- Parameters
-
I2Cx | where x can be 1, 2 or 3 to select the I2C peripheral. |
- Return values
-
The | value of the received data. |
Definition at line 769 of file stm32f4xx_i2c.c.
void I2C_SendData |
( |
I2C_TypeDef * |
I2Cx, |
|
|
uint8_t |
Data |
|
) |
| |
Sends a data byte through the I2Cx peripheral.
- Parameters
-
I2Cx | where x can be 1, 2 or 3 to select the I2C peripheral. |
Data | Byte to be transmitted.. |
- Return values
-
Definition at line 756 of file stm32f4xx_i2c.c.