-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
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
fix #840: enable device time request by default #844
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, can you add a note to README.md
, and also please change the version in lmic.h
to something like 4.2.0-pre1
? Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One other thing -- please use git rebase -i
and change the commit log message to be something like "Fix #840: Enable device time request by default" (it already was "enabled" in some sense, what you're changing is the default, so it will clarify to change the commit log, for tracking). (I change PR #844's title, but changing the commit log requires a git rebase -i
to edit the commit log. Then you'll need to do a git push -f
to issue840
.)
1722c19
to
850596d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do a search for LMIC_ENABLE_DeviceTimeReq.
- It is used in
ci/platformio.sh
; we should remove it (now that it's the default). - We should add a test to confirm that
LMIC_ENABLE_DeviceTimeReq=0
still compiles correctly. - We need to document the default state (README.md line 345). We should state "Prior to v4.2.0-pre1, the default was that device network-time requests were disabled. As of v4.2.0-pre1, the default is that device network-time requests are enabled."
Added tests with disabling device-time request, using Lines 65 to 67 in 7c73957
|
No description provided.