QUERY · ISSUE
H743ZI sleep modes
port-stm32
Hello,
I see that function machine_deepsleep has a TODO for STM32H7.
Please could you help me to implement the TODO ? I should do that but i need main guide lines.
Thanks
Aurélien
CANDIDATE · PULL REQUEST
esp32 : fix for #7158 - machine.deepsleep() not behaving as expected
port-esp32
This PR fixes machine.deepsleep() waking up the board after a delay d, for example when a machine.lightsleep(d) call was issued previously. This is because previous wake-sources remain active, whereas machine.deepsleep() shall put the board to sleep forever as per the
machine.deepsleep documentation
See #7158 for more details on : issue description, reproduction steps and fix implementation.