Hi
I am using the CubeCell-Board-V2 LoRa module for a project with a battery, with interrupts and sleeping the device.
Radio.Sleep();
lowPowerHandler();
The system works almost perfectly, it wakes up due to interruptions, sends Lora messages and goes to sleep.
attachInterrupt(INT1_PIN, onWakeUpIRQ1, RISING);
attachInterrupt(INT2_PIN, onWakeUpIRQ2, RISING);
But sometimes, the module, while asleep, starts consuming 10mA, until the interruption occurs and it goes back to sleep properly, and I don’t know what’s happening.
Could it have something to do with brownout? How can I disable this Whatsdog?