1.1.11.48 I2C_SMB_TARGET_TRANSFER_DIR Enum

C

/* I2C SMBUS Target mode */

typedef enum
{
    /* I2C Master is writing to slave */
    I2C_SMB_TARGET_TRANSFER_DIR_WRITE = 0,

    /* I2C Master is reading from slave */
    I2C_SMB_TARGET_TRANSFER_DIR_READ  = 1,

}I2C_SMB_TARGET_TRANSFER_DIR;

Summary

Defines the enum for the I2C SMBUS Target mode transfer direction

Description

Defines the enum for the I2C SMBUS Target mode transfer direction . Enum of this type is returned by the I2CSMBx_TargetTransferDirGet() function.

Remarks

None.