We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4688e2e commit 302bb30Copy full SHA for 302bb30
rf12base.h
@@ -264,6 +264,8 @@ template <class RFM_IRQ, class SelectPin> class _RF12Base
264
_rxstate = TXIDLE;
265
if (_buf[LENGTH] > RF12_MAXDATA)
266
_crc = 1; // force bad crc if packet length is invalid
267
+ // Allow an immediate transmit
268
+ _lastSend = Clock16::millis() - MIN_SEND_INTERVAL - 1;
269
return true;
270
}
271
enableReceive();
@@ -282,6 +284,8 @@ template <class RFM_IRQ, class SelectPin> class _RF12Base
282
284
283
285
286
287
288
289
290
291
return false;
0 commit comments