This section describes the differences between I2C APIs of MCU+ SDK and Processor SDK RTOS (PDK). This can be used as a migration aid when moving from Processor SDK RTOS (PDK) to MCU+ SDK.
In MCU+ SDK, the I2C module provides higher level driver APIs.Refer I2C for more details.
There are changes in functions names, structure names and macro names. The changes in function names are listed below.
PDK | MCU+ SDK | Change Description / Remarks |
---|---|---|
I2C_init | I2C_init | NO CHANGE |
I2C_deinit | I2C_deinit | NO CHANGE |
I2C_Params_init | I2C_Params_init | NO CHANGE |
I2C_open | I2C_open | NO CHANGE |
I2C_transactionInit | I2C_Transaction_init | API rename |
I2C_transfer | I2C_transfer | NO CHANGE |
None | I2C_probe | In MCU+SDK, this API can be used to probe I2C targets. |
None | I2C_setBusFrequency | In MCU+SDK, this API can be used to set the bus frequency. <tr> <td>None <td>\ref I2C_recoverBus <td>In MCU+SDK, this API can be used to recover the bus in case of error. </tr> <tr> <td>I2C_close <td>\ref I2C_close <td>NO CHANGE </tr> <tr> <td>None <td>\ref I2C_getHandle <td>In MCU+SDK, this API can be used to get the handle of an open I2C instance from the instance index. </tr> <tr> <td>I2C_control <td>None <td>In MCU+SDK, this API is separated into 3 sub APIs. I2C_probe, I2C_setBusFrequency and I2C_recoverBus. </tr> |