| 1373 | } |
| 1374 | |
| 1375 | void TwoWire::nbendTransmission(void (*function)(int)) { |
| 1376 | twi_cbendTransmissionDone = function; |
| 1377 | twi_writeTo(txAddress, txBuffer, txBufferLength, 1); |
| 1378 | return; |
| 1379 | } |
| 1380 | |
| 1381 | void TwoWire::send(uint8_t data) { |
| 1382 | if (twi_transmitting) { |
nothing calls this directly
no test coverage detected