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
When reviewing arduino-lmic docs, discovered that the proper form for checking for RX is:
if (LMIC.dataLen != 0 || LMIC.dataBeg != 0)
Right now we only have
if (LMIC.dataLen != 0)
which means that zero-length downlinks are not indicated to the client.
The text was updated successfully, but these errors were encountered:
Labeled as a bug because I didn't intend to suppress zero-length downlinks.
Sorry, something went wrong.
592d0c6
Merge pull request #61 from mcci-catena/issue50
19a0fbb
Fix #50: handle zero-length payloads per spec
No branches or pull requests
When reviewing arduino-lmic docs, discovered that the proper form for checking for RX is:
Right now we only have
which means that zero-length downlinks are not indicated to the client.
The text was updated successfully, but these errors were encountered: