Skip to content

Commit 5a1cc85

Browse files
committed
Add reference to ecosystem overview video
1 parent a07fa3b commit 5a1cc85

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/appendix/glossary.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ attempts to list them with pointers for understanding them better.
88

99
A Board Support Crate provides a high level interface configured for a specific
1010
board. It usually depends on a [HAL](#hal) crate.
11-
There is a more detailed description on the [memory-mapped registers page](../start/registers.md).
11+
There is a more detailed description on the [memory-mapped registers page](../start/registers.md)
12+
or for a broader overview see [this video](https://youtu.be/vLYit_HHPaY).
1213

1314
### FPU
1415

@@ -19,7 +20,8 @@ Floating-point Unit. A 'math processor' running only operations on floating-poin
1920
A Hardware Abstraction Layer crate provides a developer friendly interface to a microcontroller's
2021
features and peripherals. It is usually implemented on top of a [Peripheral Access Crate (PAC)](#pac).
2122
It may also implement traits from the [`embedded-hal`](https://crates.io/crates/embedded-hal) crate.
22-
There is a more detailed description on the [memory-mapped registers page](../start/registers.md).
23+
There is a more detailed description on the [memory-mapped registers page](../start/registers.md)
24+
or for a broader overview see [this video](https://youtu.be/vLYit_HHPaY).
2325

2426
### I2C
2527

@@ -34,7 +36,8 @@ A Peripheral Access Crate provides access to a microcontroller's peripherals. It
3436
the lower level crates and is usually generated directly from the provided [SVD](#svd), often
3537
using [svd2rust](https://github.com/rust-embedded/svd2rust/). The [Hardware Abstraction Layer](#hal)
3638
would usually depend on this crate.
37-
There is a more detailed description on the [memory-mapped registers page](../start/registers.md).
39+
There is a more detailed description on the [memory-mapped registers page](../start/registers.md)
40+
or for a broader overview see [this video](https://youtu.be/vLYit_HHPaY).
3841

3942
### SPI
4043

0 commit comments

Comments
 (0)