Are there examples on how to use the Tiva C Microcontrollers (TM4C123G specifically) as a slave device? The examples I see in the EK seem geared toward master mode. Even the loopback seems to about responding to another Tiva C master. I'm looking to have an external device read values from my microcontroller as if it was an eeprom. I'm looking to have an external access trigger an interrupt somehow but don't see how to link the two. At which point I assume I can use I2CSlaveStatus() in conjunction with I2CSlaveDataPut() & I2CSlaveDataGet() to handle the various accesses something like an eeprom would need to handle(read address, read consecutive). I was just hoping there might be a simple example to get me started but I only see Master and loopback stuff that isn't very helpful. But I don't know how to recognize start and stop signals with the library of functions in the EK. They seem very high level and I don't know how to use them to handle the signals that will be coming in. I've done it on on other processors using serial bit manipulation via gpio lines but there seems to be additional functions needed.