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

One attachInterruptWakeup causes all interrupts to wake from deep sleep #16

Open
trogper opened this issue Apr 26, 2019 · 7 comments
Open
Labels
type: enhancement Proposed improvement type: imperfection Perceived defect in any part of project

Comments

@trogper
Copy link

trogper commented Apr 26, 2019

I have multiple standard arduino attachInterrupt calls and one LowPower.attachInterruptWakeup, however all interrupts cause the arduino to wake up, and none of them, if I have no LowPower.attachInterruptWakeup

@facchinm
Copy link
Contributor

This line makes the interrupt wakeup capable https://github.com/arduino-libraries/ArduinoLowPower/blob/master/src/samd/ArduinoLowPower.cpp#L93 , but it's also called in the core itself (https://github.com/arduino/ArduinoCore-samd/blob/master/cores/arduino/WInterrupts.c#L80) so once EIC clock is not stopped during sleep every configured pin can wakeup the board.
@cmaglie @sandeepmistry should we remove the wakeup setting from the core and leave it in the library only?

@facchinm facchinm added type: imperfection Perceived defect in any part of project type: enhancement Proposed improvement labels Apr 29, 2019
@sandeepmistry
Copy link

@facchinm I think that line was added for people not using the low power lib: arduino/ArduinoCore-samd#90

I'm ok with removing it, if you think it's best.

@trogper
Copy link
Author

trogper commented May 1, 2019

What about breaking older projects/sketches, which "rely" on this bug and are not using LowPower.attachInterruptWakeup on all required pins?

@sslupsky
Copy link
Contributor

sslupsky commented May 8, 2019

@trogper Can we include a warning at compile time?

@trogper
Copy link
Author

trogper commented May 8, 2019

@sslupsky I personally have used this library only once, so I won't be affected by the change.
How would you differentiate correct usage from incorrect?
When would you show the warning? Always?
Do Arduino users/programmers read warnings if the program compiles and works? (in other words: is warning appropriate?)
Wouldn't warning bother people who use it correctly?

@sslupsky
Copy link
Contributor

Good points. Maybe the object can be changed so that when the method is called you specify which external interrupt is attached. The "default" can be "all"?

@mamama1
Copy link

mamama1 commented Jun 14, 2022

whatever solution is chosen, proper documentation will fix all issues and questions, i think.
another option would be to add an additional (optional) boolean parameter to attachInterrupt like standbyWakeupCapability or something like that. that way it stays in the core and is obvious to anyone who is attaching an interrupt.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement Proposed improvement type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

5 participants