I2C_Slave_write

Write one byte to the data register of I2C_Slave.

void I2C_Slave_write(
    uint8_t data
)

Function will not block if data cannot be safely accepted, so should only be called when safe, i.e. in the read callback handler.

Parameters

data

Type: uint8_t

The character to write to the I2C

Returns

Type: void

Nothing