You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Wire for I2C slave implementation one can see that when a master is using the classical register Write adress followed by a restart and a write sequence, we cannot get back the writen adress !
In
void TwoWire::onService(void)
if (_p_twis->EVENTS_READ)
if the amount of receive data is copied into the rx RingBuffer header it will be available for the end user to get back theise data in it's read event handler
**rxBuffer._iHead = _p_twis->RXD.AMOUNT;**
I don't see any side effect of this small addition.
Bye.
The text was updated successfully, but these errors were encountered:
Hi,
Using Wire for I2C slave implementation one can see that when a master is using the classical register Write adress followed by a restart and a write sequence, we cannot get back the writen adress !
In
void TwoWire::onService(void)
if (_p_twis->EVENTS_READ)
if the amount of receive data is copied into the rx RingBuffer header it will be available for the end user to get back theise data in it's read event handler
I don't see any side effect of this small addition.
Bye.
The text was updated successfully, but these errors were encountered: