Skip to content
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

Closed
caternuson opened this issue Sep 24, 2021 · 6 comments
Closed

ESP32 Wire.requestFrom() stop parameter not working #5702

caternuson opened this issue Sep 24, 2021 · 6 comments
Assignees
Labels
Area: Peripherals API Relates to peripheral's APIs. Resolution: Wontfix Arduino ESP32 team will not fix the issue

Comments

@caternuson
Copy link
Contributor

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:

#include <Wire.h>

#define WIRE Wire
#define I2C_ADDRESS (0x69)
#define READ_SIZE (32)

void setup() {
  Serial.begin(9600);
  while(!Serial);

  uint8_t buffer[READ_SIZE];
  
  WIRE.begin();
  WIRE.requestFrom(I2C_ADDRESS, 32, false);
  uint32_t count = 0;
  while (WIRE.available() and count < READ_SIZE) {
    buffer[count++] = WIRE.read();
  }
}

void loop() {
}

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)
screenshot

stop = false (not expected results)
[NO TRAFFIC]

BSP 2.0.0 with PR #5683
stop = true (expected results)
feather_esp32_pr5683_true

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

See here for expected outputs on a SAMD21 based board (Adafruit Qt Py):
adafruit/Adafruit_BusIO#64 (comment)

@me-no-dev
Copy link
Member

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?

@me-no-dev me-no-dev self-assigned this Sep 27, 2021
@caternuson
Copy link
Contributor Author

Here's one example sensor that has a long read back to get all the sensor data:
https://github.com/adafruit/Adafruit_AMG88xx

The main goal is to abstract all the I2C details into this library:
https://github.com/adafruit/Adafruit_BusIO
including breaking up long read/writes into "chunks" sized per platform.

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.

@caternuson
Copy link
Contributor Author

@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:
adafruit/Adafruit_BusIO#65

The biggest issue with current BSP is it just gives up and doesn't even output anything on the I2C bus.

@VojtechBartoska
Copy link
Contributor

Hello, can you please retest this with v2.0.3-rc1? thanks!

@VojtechBartoska VojtechBartoska added Resolution: Awaiting response Waiting for response of author Area: Peripherals API Relates to peripheral's APIs. and removed Status: Awaiting triage Issue is waiting for triage labels Apr 7, 2022
@me-no-dev
Copy link
Member

@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.

Repository owner moved this from Todo to Done in Arduino ESP32 Core Project Roadmap Apr 27, 2022
@me-no-dev me-no-dev added Resolution: Wontfix Arduino ESP32 team will not fix the issue and removed Resolution: Awaiting response Waiting for response of author labels Apr 27, 2022
@caternuson
Copy link
Contributor Author

@me-no-dev OK. Thanks for responding back here with info on final resolution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: Peripherals API Relates to peripheral's APIs. Resolution: Wontfix Arduino ESP32 team will not fix the issue
Projects
Development

No branches or pull requests

3 participants