1.13.11.17 I2C_SLAVE_ERROR Enum

C

/* I2C slave mode */

typedef enum
{
    // No Error
    I2C_SLAVE_ERROR_NONE,
    
    // Bus Collision Error
    I2C_SLAVE_ERROR_BUS_COLLISION,
    
} I2C_SLAVE_ERROR;

Summary

Defines errors associated with I2C in slave mode

Description

This enum defines errors associated with I2C in slave mode. An error of this type is returned by the I2Cx_ErrorGet() function

Remarks

None.