Hi,
I need to communicate two chips tm4c1294ncpdt using I2C.
The data to be sent is not a single byte and I cannot stop my code waiting while the data is being sent. So the idea is to send the data while the main code is still running (therefore I cannot wait on a while loop). When the sending ends, I want to call an interrupt that activates a flag to indicate the end of it. The process is analog to the slave (using interrupts too).
The communication is bidirectional, both master and slave send and receive data.
Is this configuration possible ? Can I send and receive using Burst ?