diff options
author | Damien George <damien.p.george@gmail.com> | 2015-10-10 00:03:14 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-10-10 00:03:14 +0100 |
commit | 845b5a2a582023caf484f87e6f12abc715f6b922 (patch) | |
tree | e5857cd91f4dd228a2f053cfa377c6f8f199e511 | |
parent | 7381b7ac71b3590140620d125c72625ac48ec30a (diff) | |
download | micropython-845b5a2a582023caf484f87e6f12abc715f6b922.tar.gz micropython-845b5a2a582023caf484f87e6f12abc715f6b922.zip |
docs: Describe properly how MCU can be woken from pyb.standby() state.
-rw-r--r-- | docs/library/pyb.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/library/pyb.rst b/docs/library/pyb.rst index 478ca7f278..98cb763ee3 100644 --- a/docs/library/pyb.rst +++ b/docs/library/pyb.rst @@ -169,7 +169,8 @@ Power related functions Put the pyboard into a "deep sleep" state. This reduces power consumption to less than 50 uA. To wake from this - sleep state requires an external interrupt or a real-time-clock event. + sleep state requires a real-time-clock event, or an external interrupt + on X1 (PA0=WKUP) or X18 (PC13=TAMP1). Upon waking the system undergoes a hard reset. See :meth:`rtc.wakeup` to configure a real-time-clock wakeup event. |