37.3.9 Transmit Buffer
The I2C module has a dedicated transmit buffer, I2CxTXB, which is independent from the receive buffer.
The transmit buffer is loaded with an address byte (when ABD =
1
), or a data byte, that is copied into the transmit shift register
and transmitted onto the bus. When the I2CxTXB register does not
contain any transmit data, the Transmit Buffer Empty Status (TXBE)
bit is set (TXBE = 1
), allowing user software or the DMA to load a new
byte into the buffer. When the TXBE bit is set and the I2CxCNT register is nonzero
(I2CxCNT != 0
), the I2C Transmit Interrupt Flag (I2CxTXIF)
bit of the PIR registers is set and can be used as a DMA trigger. A write to I2CxTXB
will clear both the TXBE and I2CxTXIF bits. Setting the Clear Buffer (CLRBF) bit clears I2CxTXIF, the I2Cx Receive Buffer (I2CxRXB) and I2CxTXB.If user software attempts to load I2CxTXB while it is full, the Transmit Write Error Status
(TXWE) bit is set, a NACK is generated, and the new data are
ignored. If TXWE is set, user software must clear the bit before attempting to load the
buffer again.