1.36.7.73 FLEXCOM_TWI_ERROR Enum

C

/* TWI master mode */

typedef enum
{
    /* No Error */
    FLEXCOM_TWI_ERROR_NONE,
    
    /* Slave returned Nack */
    FLEXCOM_TWI_ERROR_NACK,
    
} FLEXCOM_TWI_ERROR;

Summary

Defines the possible errors that the FLEXCOM peripheral can generate in TWI master mode.

Description

This enum defines the possible error the FLEXCOM TWI peripheral can generate when it is configured in master mode. An error of this type is returned by the FLEXCOMx_TWI_ErrorGet() function.

Remarks

None