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
If data size to be sent is greater than the max defined,
application can split the transfert
Note: no limit implemented in RX buffer, because when receiving,
data are received on I2C, it is not possible to split.
Fixesstm32duino#1539
Signed-off-by: Alexandre Bourdiol <[email protected]>
ABOSTM
added a commit
to ABOSTM/Arduino_Core_STM32
that referenced
this issue
Nov 26, 2021
If data size to be sent is greater than the max defined,
application can split the transfert
Note: no limit implemented in RX buffer, because when receiving,
data are received on I2C, it is not possible to split.
Fixesstm32duino#1539
Signed-off-by: Alexandre Bourdiol <[email protected]>
If data size to be sent is greater than the max defined,
application can split the transfert
Note: no limit implemented in RX buffer, because when receiving,
data are received on I2C, it is not possible to split.
Fixesstm32duino#1539
Signed-off-by: Alexandre Bourdiol <[email protected]>
ABOSTM
added a commit
to ABOSTM/Arduino_Core_STM32
that referenced
this issue
Nov 26, 2021
If data size to be sent is greater than the max defined,
application can split the transfert
Note: no limit implemented in RX buffer, because when receiving,
data are received on I2C, it is not possible to split.
Fixesstm32duino#1539
Signed-off-by: Alexandre Bourdiol <[email protected]>
Currently, built-in Wire library dynamically allocate Rx and Tx Buffer and raised an error when no more space are available.
(
TwoWire::allocateRxBuffer
andTwoWire::allocateTxBuffer
)Goal of this issue is to add a maximum buffer length and return 0 if it is reached to allow application to know the buffer is full and need to be flushed (
endTransmission
).Ex: https://github.com/simondlevy/VL53L5/blob/b81b3d1bef74bdecbe7615e3a498a8648a2fdd0d/src/st/platform.cpp#L117-L140
The text was updated successfully, but these errors were encountered: