Based on answers to my previous post - I have a question about basic I2C transactions.
If a basic transaction has the following structure:
start
chip address
bytes to chip
stop
I am wondering if its correct to execute multiple of these processes in sequence.
For example - here there is a pair of processes:
The first is: START, $3C, ACK, $00, ACK, $8D, ACK, STOP
The second is: START, $3C, ACK, $00, ACK, $AF, ACK, STOP
Although less efficient than something like:
START, $3C, ACK, $10, ACK, $8D, ACK, $00, ACK, $AF, ACK, STOP - would the instructions be executed the same way?
