We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As part of mcci-catena/arduino-lmic@53c27e4, we added the following:
// compute exit status if (ev == EV_TXCANCELED) { // canceled: unsuccessful. fSuccess = 0; } else if (/* ev == EV_TXCOMPLETE && */ LMIC.pendTxConf) { fSuccess = (LMIC.txrxFlags & TXRX_ACK) != 0; } else { // unconfirmed uplinks are successful if they were sent. fSuccess = 1; }
Arduino_LoRaWAN doesn't have those checks (for confirmed/unconfirmed uplink, and cancel) and it should.
The text was updated successfully, but these errors were encountered:
9a9f441
terrillmoore
No branches or pull requests
As part of mcci-catena/arduino-lmic@53c27e4, we added the following:
Arduino_LoRaWAN doesn't have those checks (for confirmed/unconfirmed uplink, and cancel) and it should.
The text was updated successfully, but these errors were encountered: