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 39ad2ae commit 777eacdCopy full SHA for 777eacd
libraries/Wire/src/Wire.cpp
@@ -291,7 +291,7 @@ size_t TwoWire::requestFrom(uint8_t address, size_t quantity) {
291
}
292
293
static bool _clockStretch(pin_size_t pin) {
294
- auto end = time_us_64() + 100;
+ auto end = time_us_64() + 500;
295
while ((time_us_64() < end) && (!digitalRead(pin))) { /* noop */ }
296
return digitalRead(pin);
297
0 commit comments