We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7fc034 commit 94e4d99Copy full SHA for 94e4d99
src/platform.cpp
@@ -89,8 +89,8 @@ uint8_t VL53L8CX::WrMulti(
89
i += current_write_size;
90
if (size - i) {
91
92
- // Flush buffer but do not send stop bit so we can keep going
93
- 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);
94
95
}
96
0 commit comments