You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thank you sir for the amazing work, this is rather a request.
I am currenty working on a project, where my STM32L0 should wake up from timed alarm and wakeup pin interrupt also.
the issue i am facing, i want to disable pin interrupt for some time once the pin interrupt occured, i tried detaching and attaching interrupt, detaching interrupt just disable the ISR code run but controller still wakeup from sleep. i have also disabled wake up but still controller wakeup from pin interrupt.
setup code
// Configure low power
LowPower.begin();
LowPower.attachInterruptWakeup(ovfPin, serviceOVFInterrupt, FALLING, DEEP_SLEEP_MODE);
if (firstInterruptOccurred && (millis() - disableInterruptStartTime >= 3000)) {
LowPower.attachInterruptWakeup(ovfPin, serviceOVFInterrupt, FALLING, DEEP_SLEEP_MODE);
DEBUG_PRINTLN("Service ISR task and attach time :" + String(millis()));
firstInterruptOccurred = false;
disableInterruptStartTime = 0;
}
I think library should give user a function to disable interrupt to disable and enable sleep wake capability.
Please help me understand how can i do it sir.
thank you sir
The text was updated successfully, but these errors were encountered:
thank you sir for the amazing work, this is rather a request.
I am currenty working on a project, where my STM32L0 should wake up from timed alarm and wakeup pin interrupt also.
the issue i am facing, i want to disable pin interrupt for some time once the pin interrupt occured, i tried detaching and attaching interrupt, detaching interrupt just disable the ISR code run but controller still wakeup from sleep. i have also disabled wake up but still controller wakeup from pin interrupt.
setup code
ISR Code
loop code:
I think library should give user a function to disable interrupt to disable and enable sleep wake capability.
Please help me understand how can i do it sir.
thank you sir
The text was updated successfully, but these errors were encountered: