Browse Source

Merge pull request #3000 from oltaco/rx-irq-timeout

fix: clear the correct IRQ flag for timeout on preamble detected on SX1262
pull/2990/head
Liam Cottle 5 days ago
committed by GitHub
parent
commit
a45dae928c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/helpers/radiolib/CustomSX1262.h

2
src/helpers/radiolib/CustomSX1262.h

@ -125,7 +125,7 @@ class CustomSX1262 : public SX1262 {
if (preamble) {
if (_activityAt == 0) _activityAt = now;
if (now - _activityAt > _preambleMillis) {
clearIrqStatus(RADIOLIB_IRQ_PREAMBLE_DETECTED);
clearIrqFlags(RADIOLIB_SX126X_IRQ_PREAMBLE_DETECTED);
_activityAt = 0;
MESH_DEBUG_PRINTLN("Clearing preamble IRQ after %ums", _preambleMillis);

Loading…
Cancel
Save