| 1390 | } |
| 1391 | |
| 1392 | void TwoWire::nbendTransmission(void (*function)(int)) { |
| 1393 | twi_cbendTransmissionDone = function; |
| 1394 | twi_writeTo(txAddress, txBuffer, txBufferLength, 1); |
| 1395 | return; |
| 1396 | } |
| 1397 | |
| 1398 | void TwoWire::send(uint8_t data) { |
| 1399 | if (twi_transmitting) { |
nothing calls this directly
no test coverage detected