We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc249db commit 0a48025Copy full SHA for 0a48025
libraries/Wire/Wire.cpp
@@ -50,7 +50,6 @@ uint8_t arduino::MbedI2C::endTransmission(void) {
50
uint8_t arduino::MbedI2C::requestFrom(uint8_t address, size_t len, bool stopBit) {
51
char buf[256];
52
int ret = master->read(address << 1, buf, len, !stopBit);
53
- Serial.println(ret);
54
if (ret != 0) {
55
return 0;
56
}
0 commit comments