8000
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.
2 parents 9781382 + 98cbe10 commit b502fd7Copy full SHA for b502fd7
libraries/Wire/src/Wire.cpp
@@ -45,8 +45,8 @@ TwoWire::TwoWire(uint8_t bus_num)
45
,txAddress(0)
46
,txQueued(0)
47
,transmitting(0)
48
- ,_timeOutMillis(50)
49
,last_error(I2C_ERROR_OK)
+ ,_timeOutMillis(50)
50
,_dump(false)
51
{}
52
libraries/Wire/src/Wire.h
@@ -60,7 +60,7 @@ class TwoWire: public Stream
60
void onRequestService(void);
61
void onReceiveService(uint8_t*, int);
62
*/
63
- i2c_err_t last_error; // @stickBreaker from esp32-hal-i2c.h
+ i2c_err_t last_error; // @stickBreaker from esp32-hal-i2c.h
64
i2c_err_t processQueue(uint32_t *readCount);
65
uint16_t _timeOutMillis;
66
bool _dump;
0 commit comments