Skip to content
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

Remove magic values for LowPower.sleep() #10

Closed
wants to merge 1 commit into from
Closed

Remove magic values for LowPower.sleep() #10

wants to merge 1 commit into from

Conversation

polygamma
Copy link

@polygamma polygamma commented Oct 12, 2018

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.

@facchinm
Copy link
Contributor

LGTM! I'll test it later today with arduino-libraries/ArduinoLowPower#9, although I'd wait to merge when both the PR are fine.

@polygamma
Copy link
Author

The relevant commit to make this work, can now be found here

@polygamma
Copy link
Author

polygamma commented Oct 15, 2018

Addition, since we've been speaking about out of bounds errors here, you may want to include this commit.

Edit - in total are three commits needed: commit1, commit2, commit3

@polygamma
Copy link
Author

Any update?

@polygamma polygamma closed this Dec 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants