1.38.21.83 SERCOM_I2C_SLAVE_ACK_ACTION_SEND Enum

C

/* I2C slave mode */

typedef enum
{
	/* Set ACK Action as ACK */
    SERCOM_I2C_SLAVE_ACK_ACTION_SEND_ACK = 0,
	
	/* Set ACK Action as NAK */
    SERCOM_I2C_SLAVE_ACK_ACTION_SEND_NAK,
}SERCOM_I2C_SLAVE_ACK_ACTION_SEND;

Summary

Defines the enum for the I2C slave acknowledgement type

Description

Defines the enum for the I2C slave acknowledgement type. The SERCOMx_I2C_AckActionSet() function takes the acknowledgement of this type as an argument.

Remarks

None.