Browse Source

Merge pull request #1254 from entr0p1/tx-led-fix-v2

Fix TX LED stuck on when StartTransmit() fails
pull/1299/head
ripplebiz 5 months ago
committed by GitHub
parent
commit
8edbb085fb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/helpers/radiolib/RadioLibWrappers.cpp

1
src/helpers/radiolib/RadioLibWrappers.cpp

@ -137,6 +137,7 @@ bool RadioLibWrapper::startSendRaw(const uint8_t* bytes, int len) {
}
MESH_DEBUG_PRINTLN("RadioLibWrapper: error: startTransmit(%d)", err);
idle(); // trigger another startRecv()
_board->onAfterTransmit();
return false;
}

Loading…
Cancel
Save