3.2.11 Inter-Integrated Circuit - I2C

The Inter-Integrated Circuit (I2C) module is a serial interface useful for communicating with other peripheral or microcontroller (MCU) devices. The external peripheral devices may be serial EEPROMs, display drivers, Analog-to-Digital Converters (ADC) and so on. The I2C module can operate as any one of the following in the I2C system:

• Client Device

• Host Device in a Single Host System (Client May Be Active)

• Host or Client Device in a Multi-Host System (Bus Collision Detection and Arbitration are Available)

Key features of the I2C module include the following:

• Independent Host and Client Logic

• Supports 100 kHz, 400 kHz and 1MHz Bus Specifications

• 7-bit and 10-bit Device Addresses.

• Client Mode Can be Configured for:

– Two unique addresses

– Range of address

– General call address

– Address bit masking

• Automatic Clock Stretching Provides Delays for the Processor to Respond to a Client Data Request

• Multi-Host Support Which Prevents Message Losses in Arbitration

• Smart Mode for Minimal User Interaction and Simpler Application Code

• Supports Data Hold Time for SMBus (300 nS or 150 nS) in Client Mode

• Supports SMBus v2.0 and v3.0 Input Voltage Levels.

• Supports the Intelligent Platform Management Interface (IPMI) Standard

• System Management Bus (SMBus) and Power Management Bus (PMBus) Support:

– Packet Error Checking (PEC) using CRC-8 calculator

– Clock low timeout, Bus idle timeout and cumulative timeout

– Frame error detection

Library Interface

Functions

NameDescriptionHost modeClient mode
I2Cx_InitializeInitializes the instance of the I2C peripheral in either host or client modeYesYes
I2Cx_DeinitializeDe-initializes the instance of the I2C peripheralYesYes
I2Cx_TransferAbortForce stops the I2C transferYesNo
I2Cx_ReadReads data from the client YesNo
I2Cx_WriteWrites data to the clientYesNo
I2Cx_WriteReadWrite and Read data from clientYesNo
I2Cx_WriteForcedForced write data to the clientYesNo
I2Cx_IsBusyReturns the Peripheral busy statusYesYes
I2Cx_ErrorGetReturns the I2C error that occurred on the busYesYes
I2Cx_TransferSetupDynamic setup of I2C PeripheralYesNo
I2Cx_CallbackRegisterSets the pointer to the function (and it's context) to be called when the given I2C's transfer events occurYesYes
I2Cx_ReadByteRead the received I2C byteNoYes
I2Cx_WriteByteWrite a data byte to I2C hostNoYes
I2Cx_TransferDirGetReturns the I2C transfer directionNoYes
I2Cx_LastByteAckStatusGetReturns the ACK status of the last byte written to the I2C hostNoYes
I2Cx_BusScan FunctionScans and reports the target devices found on the busYesNo

Data types and constants

NameTypeDescriptionHost modeClient mode
I2C_ERROREnumDefines the possible errors that the I2C peripheral can generate in I2C host modeYesNo
I2C_TRANSFER_SETUPStructI2C transfer setup data structureYesNo
I2C_CALLBACKTypedefDefines the data type and function signature for the I2C peripheral callback function in I2C host modeYesNo
I2C_CLIENT_TRANSFER_DIREnumDefines the enum for I2C data transfer directionNoYes
I2C_CLIENT_ACK_STATUSEnumDefines the enum for the I2C acknowledgementNoYes
I2C_CLIENT_TRANSFER_EVENTEnumDefines the enum for the I2C client transfer eventNoYes
I2C_CLIENT_ERROREnumDefines errors associated with I2C in client modeNoYes
I2C_CLIENT_CALLBACKTypedefDefines the data type and function signature for the I2C client callback functionNoYes
I2C_STATEEnumDefines the I2C PLib Task StateYesYes
I2C_TRANSFER_TYPEEnum

Defines the I2C Transfer Type

YesNo

Remarks

For paticular family devices the Master term is referred as Host and Slave term is referred as Client

Please refer respective device header files for specific API prototype.