Skip to content

Commit 384ae16

Browse files
committed
Minor tweaks.
1 parent 1686d75 commit 384ae16

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/SUMMARY.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
- [Hardware information](./setup/hardware.md)
66
- [Links](./setup/links.md)
77
- [Hello World](./hello_world.md)
8-
- [Blinky](./blinky.md)
9-
- [Exercise: working with inputs](./button.md)
8+
- [Blinky](./blinky.md)
9+
- [Exercise: working with inputs](./button.md)
1010
- [Interrupts](./interrupt_intro.md)
11-
- [GPIO Interrupt](./gpio_interrupt.md)
11+
- [GPIO Interrupt](./gpio_interrupt.md)
12+
- [Exercise: toggle LED with interrupt](./led_with_interrupt.md)

src/button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Working with inputs
1+
# Exercise: working with inputs
22

33
We have worked through an example of driving a GPIO output.
44
Now it's time for you to try and extend the program to read the GPIO input state.

src/interrupt_intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Interrupts
22

3-
In the last exercise, we learnt how to read to read a GPIO pin state.
3+
In the last exercise, we learnt how to read a GPIO pin state.
44
However, it's not always desirable to poll the pin state in software.
55
This is where interrupts come it. We can ask hardware to notify us whenever the pin state changes.
66

0 commit comments

Comments
 (0)