From 1d191fdf036f753b04a9f3b9d5187cdc4aadf120 Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 4 Jan 2016 16:18:44 +0000 Subject: [PATCH] docs: Add link from pyboard switch tutorial to ISR rules document. --- docs/pyboard/tutorial/switch.rst | 6 ++++++ 1 file changed, 6 insertions(+) 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 `.