forked from things-nyc/arduino-lmic
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #208: complete the Class C implementation
This is a breaking change, because clients previously could use `LMIC.rxtime` to schedule a receive. This no longer works; `LMIC.nextRxTime` is used to schedule the receive, and now `LMIC.rxtime` only is used to report the time of last receive. But in addition, this adds a new configuration variable, `LMIC_ENABLE_class_c`, a new API for run-time enabling (if configured in), and support for starting class C receives at the appropriate times. This seemed to require an additional receive buffer, to avoid collisions; and therefore client code that depends on results showing up in LMIC.frame[] may be rudely surprised.
- Loading branch information
1 parent
9960bf3
commit 0e5c776
Showing
12 changed files
with
982 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.