Skip to content

Commit 210f156

Browse files
committed
Fix a couple of typos in Chapter 8 docs
* Should reference aux7::init instead of aux8::init when talking about previous chapter's code. * Misspelling of 'output'.
1 parent 773223a commit 210f156

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/08-leds-again/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# LEDs, again
22

33
In the last section, I gave you *initialized* (configured) peripherals (I initialized them in
4-
`aux8::init`). That's why just writing to `BSRR` was enough to control the LEDs. But, peripherals
4+
`aux7::init`). That's why just writing to `BSRR` was enough to control the LEDs. But, peripherals
55
are not *initialized* right after the microcontroller boots.
66

77
In this section, you'll have more fun with registers. I won't do any initialization and you'll have

src/08-leds-again/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The register we'll have to deal with is: `MODER`.
1313
Your task for this section is to further update the starter code to configure the *right* `GPIOE`
1414
pins as digital outputs. You'll have to:
1515

16-
- Figure out *which* pins you need to configure as digital outupts. (hint: check Section 6.4 LEDs of
16+
- Figure out *which* pins you need to configure as digital outputs. (hint: check Section 6.4 LEDs of
1717
the *User Manual* (page 18)).
1818
- Read the documentation to understand what the bits in the `MODER` register do.
1919
- Modify the `MODER` register to configure the pins as digital outputs.

0 commit comments

Comments
 (0)