Remove magic values for LowPower.sleep() #10
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As of now, the SigFox library uses kind of magic values when it comes to LowPower.sleep usage, as can be seen here and here. After reading the datasheet from Atmel, here, point 2.2.3 seems to give a hint, where they are coming from, it's still bad to rely on hardcoded sleep times.
This PR removes time based sleep entirely, and waits for the interrupt coming from the
SIGFOX_EVENT_PIN
only. After some testing, this definitely lead to more accurate return values of SigFox.endPacket.The slightly unelegant way of using the wakeUpRoutine function is needed, because in deep sleep, interrupts based on rising or falling edges are not possible. The relevant clock is turned off, which means one has to use "HIGH" or "LOW" as trigger, and thus it is needed to change the relevant values in a callback function to avoid an infinite loop. It is further needed to call a status() function without delay, because that leads to a deadlock, when being called from within an interrupt.
Anyway, this does only work with a fixed version of the Low Power library, see arduino-libraries/ArduinoLowPower#9.
As of now, it is not possible to register interrupts for the SigFox event pin.
Btw this commit fixed the problems with the controllers being unable to wake up from LowPower.sleep at all. Using RTCZero including this commit, removes the need to always run with the debugging mode turned on.