check whether an ACK was requested in the last received packet (non-broadcasted packet)
| 365 | |
| 366 | // check whether an ACK was requested in the last received packet (non-broadcasted packet) |
| 367 | bool RFM69::ACKRequested() { |
| 368 | return ACK_REQUESTED && (TARGETID == _address); |
| 369 | } |
| 370 | |
| 371 | // should be called immediately after reception in case sender wants ACK |
| 372 | void RFM69::sendACK(const void* buffer, uint8_t bufferSize) { |
nothing calls this directly
no outgoing calls
no test coverage detected