summaryrefslogtreecommitdiffstatshomepage
path: root/docs/pyboard/tutorial
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2016-01-04 16:18:44 +0000
committerDamien George <damien.p.george@gmail.com>2016-01-04 16:18:44 +0000
commit1d191fdf036f753b04a9f3b9d5187cdc4aadf120 (patch)
tree95125b86a078ef047f37f9abfb7d8d2c3bce9757 /docs/pyboard/tutorial
parent43cab7c283d56301f4c88c53e1a4abf854b9b254 (diff)
downloadmicropython-1d191fdf036f753b04a9f3b9d5187cdc4aadf120.tar.gz
micropython-1d191fdf036f753b04a9f3b9d5187cdc4aadf120.zip
docs: Add link from pyboard switch tutorial to ISR rules document.
Diffstat (limited to 'docs/pyboard/tutorial')
-rw-r--r--docs/pyboard/tutorial/switch.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/pyboard/tutorial/switch.rst b/docs/pyboard/tutorial/switch.rst
index 759fea8ffe..945e89aa05 100644
--- a/docs/pyboard/tutorial/switch.rst
+++ b/docs/pyboard/tutorial/switch.rst
@@ -99,3 +99,9 @@ The above sequence of events gets a bit more complicated when multiple
interrupts occur at the same time. In that case, the interrupt with the
highest priority goes first, then the others in order of their priority.
The switch interrupt is set at the lowest priority.
+
+Further reading
+---------------
+
+For further information about using hardware interrupts see
+:ref:`writing interrupt handlers <isr_rules>`.