H743ZI sleep modes
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
Deepsleep() on nrf52832 not implemented?
I'm having a custom build hardware with the nrf52832, everything works so far, except deepsleep.
Pulling latest from repository, and building with:
make BOARD=feather52 FROZEN_MPY_DIR=freeze SD=s132 flash sd
Connecting to device through WebBluetooth REPL, everything works as expected. However:
import machine
machine.deepsleep(60000)
Throws the following error:
Traceback (most recent call last):
File "<stdin>", in <module>
TypeError: function takes 0 positional arguments but 1 were given
And the following has no effect:
import machine
machine.deepsleep()
Same goes with:
import machine
machine.lightsleep()
Are these features not implemented yet?