diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-03 12:53:57 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-03 12:53:57 +0300 |
commit | 81a99eb388a6ae05c6ec52439c137496510dc757 (patch) | |
tree | b3d921dfeb3c953d4b31a812ea009db845c1bf37 /docs/library | |
parent | bb6458bf43c6e724643aa7854af7c17ea8beb787 (diff) | |
download | micropython-81a99eb388a6ae05c6ec52439c137496510dc757.tar.gz micropython-81a99eb388a6ae05c6ec52439c137496510dc757.zip |
docs/machine: idle() description generalization.
Diffstat (limited to 'docs/library')
-rw-r--r-- | docs/library/machine.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/library/machine.rst b/docs/library/machine.rst index ce5edf4938..14d75cb466 100644 --- a/docs/library/machine.rst +++ b/docs/library/machine.rst @@ -58,7 +58,8 @@ Power related functions Gates the clock to the CPU, useful to reduce power consumption at any time during short or long periods. Peripherals continue working and execution resumes as soon - as any interrupt is triggered (including the systick which has a period of 1ms). + as any interrupt is triggered (on many ports this includes system timer + interrupt occuring at regular intervals on the order of millisecond). .. function:: sleep() |