We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886ed9a commit d9e6a6bCopy full SHA for d9e6a6b
src/platform.cpp
@@ -83,8 +83,8 @@ uint8_t VL53L7CX::WrMulti(
83
i += current_write_size;
84
if (size - i) {
85
86
- // Flush buffer but do not send stop bit so we can keep going
87
- p_platform->dev_i2c->endTransmission(false);
+ // Flush buffer and send stop bit so we have compatibility also with ESP32 platforms
+ p_platform->dev_i2c->endTransmission(true);
88
89
}
90
0 commit comments