Skip to content

Commit baca395

Browse files
authored
Merge branch 'master' into fix_wiki_img_links
2 parents 5571a3d + 94fcc44 commit baca395

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

microbit/src/02-requirements/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ whether a high level crate already exists, like the [`nrf52-hal`], for your deve
5252
somewhere. You can look through the [Awesome Embedded Rust HAL list] for your microcontroller,
5353
if you intend to use a different one.
5454

55-
[`nrf52-hal`]: https://docs.rs/nrf52-hal
55+
[`nrf52-hal`]: https://github.com/nrf-rs/nrf-hal
5656
[Awesome Embedded Rust HAL list]: https://github.com/rust-embedded/awesome-embedded-rust#hal-implementation-crates
5757

5858
With a different development board, this text would lose most if not all its beginner friendliness

microbit/src/04-meet-your-hardware/microbit-v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dedicated to explaining the weird chip naming. Here we learn that:
2424
[QFN48]: https://en.wikipedia.org/wiki/Flat_no-leads_package
2525
[Nordic Semiconductor]: https://www.nordicsemi.com/
2626
[product page]: https://www.nordicsemi.com/products/nrf51822
27-
[product specification]: https://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf
27+
[product specification]: https://docs.nordicsemi.com/bundle/nRF51822_PS/resource/nRF51822_PS_v3.3.pdf
2828

2929
- The `N51` is the MCU's series, indicating that there are other `nRF51` MCUs
3030
- The `822` is the part code

microbit/src/04-meet-your-hardware/microbit-v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dedicated to explaining the weird chip naming. Here we learn that:
2424
[aQFN73]: https://en.wikipedia.org/wiki/Flat_no-leads_package
2525
[Nordic Semiconductor]: https://www.nordicsemi.com/
2626
[product page]: https://www.nordicsemi.com/products/nrf52833
27-
[product specification]: https://infocenter.nordicsemi.com/pdf/nRF52833_PS_v1.3.pdf
27+
[product specification]: https://docs.nordicsemi.com/bundle/nRF52833-PS/resource/nRF52833_PS_v1.3.pdf
2828

2929
- The `N52` is the MCU's series, indicating that there are other `nRF52` MCUs
3030
- The `833` is the part code

microbit/src/05-led-roulette/debug-it.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Remote debugging using :1337
5555
```
5656
5757
Next what we want to do is get to the main function of our program.
58-
We will do this by first setting a breakpoint there and the continuing
58+
We will do this by first setting a breakpoint there and then continuing
5959
program execution until we hit the breakpoint:
6060
6161
```

0 commit comments

Comments
 (0)