-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESP32 Wire.requestFrom() stop parameter not working #5702
Comments
I am not sure if we will be able to support this. Do you have hardware that requires this feature? Or is this something custom? |
Here's one example sensor that has a long read back to get all the sensor data: The main goal is to abstract all the I2C details into this library: The necessity for actually needing this (the suppressed stop) can vary from sensor to sensor though. For example, the AMG8833 seems to be OK with our without it. But general concern would be other sensors may see it as repeated start and reset their internal data buffer and essentially terminate the long data transfer. |
@me-no-dev FWIW - things seem to end up working with the #5683 updates, despite it still producing the stop (as seen in scope trace above). Here's an example with AMG8833: The biggest issue with current BSP is it just gives up and doesn't even output anything on the I2C bus. |
Hello, can you please retest this with v2.0.3-rc1? thanks! |
@caternuson final resolution seems to be that we can not support this on ESP32. The peripheral will not send anything until STOP is queued. You PR to Adafruit was the correct action to take. |
@me-no-dev OK. Thanks for responding back here with info on final resolution. |
Hardware:
Board: Adafruit Feather ESP32
Core Installation version: 1.0.6, 2.0.0, 2.0.0 w/ PR #5683
IDE name: Arduino IDE
Flash Frequency: 80Mhz
PSRAM enabled: n/a
Upload Speed: 921600
Computer OS: Ubuntu
Description:
Board does not generated expected I2C traffic when attempting to suppress the I2C stop on a read. This is a weird use case, but is needed for implementing chuckified reads when total length exceeds board's read buffer.
Sketch:
Debug Messages:
None. Code compiles and runs without errors. Issue is seen in actual I2C traffic. See traces below.
BSP 1.0.6 and 2.0.0

stop = true (expected results)
stop = false (not expected results)
[NO TRAFFIC]
BSP 2.0.0 with PR #5683

stop = true (expected results)
stop = false (not expected results - should be no stop at end)

See here for expected outputs on a SAMD21 based board (Adafruit Qt Py):
adafruit/Adafruit_BusIO#64 (comment)
The text was updated successfully, but these errors were encountered: