Skip to content

Commit 13a142b

Browse files
committed
Wire: I2C slave, exit critical section before calling onReceiveCb()
1 parent befeca3 commit 13a142b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/Wire/Wire.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,10 @@ void arduino::MbedI2C::receiveThd() {
179179
break;
180180
}
181181
}
182-
if (rxBuffer.available() > 0 && onReceiveCb != NULL) {
183-
onReceiveCb(rxBuffer.available());
184-
}
185182
core_util_critical_section_exit();
183+
if (available() > 0 && onReceiveCb != NULL) {
184+
onReceiveCb(available());
185+
}
186186
//slave->stop();
187187
break;
188188
case mbed::I2CSlave::NoData:

0 commit comments

Comments
 (0)