diff options
Diffstat (limited to 'docs/wipy')
-rw-r--r-- | docs/wipy/general.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/wipy/general.rst b/docs/wipy/general.rst index bcbbe53d7d..c1e9696601 100644 --- a/docs/wipy/general.rst +++ b/docs/wipy/general.rst @@ -170,3 +170,12 @@ There are currently 2 kinds of errors that you might see: 2. If the heartbeat LED stays on, then there was a hard fault, you cannot recover from this, the only way out is to press the reset switch. +Details on sleep modes +---------------------- + +* ``machine.idle()``: Power consumption: ~12mA (in WLAN STA mode). Wake sources: + any hardware interrupt (including systick with period of 1ms), no special + configuration required. +* ``machine.sleep()``: 950uA (in WLAN STA mode). Wake sources are ``Pin``, ``RTC`` + and ``WLAN`` +* ``machine.deepsleep()``: ~5uA. Wake sources are ``Pin`` and ``RTC``. |