diff options
| author | James Munns <[email protected]> | 2024-07-22 11:48:12 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-22 11:48:12 +0000 |
| commit | ea4c2ca95d640e09da13d6ffab51ec943d3fc667 (patch) | |
| tree | dd4e7b0e8c2606cb42a4e1d99494842d43077e30 /docs/pages/sharing_peripherals.adoc | |
| parent | 2766993099b6604739ae25724aa2f6a9877d9902 (diff) | |
| parent | 4811c14cc8ad57251e50e3aaa6d221f80603f577 (diff) | |
Merge pull request #3200 from Dygear/main
Documentation Link Fixes
Diffstat (limited to 'docs/pages/sharing_peripherals.adoc')
| -rw-r--r-- | docs/pages/sharing_peripherals.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/pages/sharing_peripherals.adoc b/docs/pages/sharing_peripherals.adoc index 6ba13f93b..dfb8c1ffe 100644 --- a/docs/pages/sharing_peripherals.adoc +++ b/docs/pages/sharing_peripherals.adoc | |||
| @@ -8,7 +8,7 @@ The following examples shows different ways to use the on-board LED on a Raspber | |||
| 8 | 8 | ||
| 9 | Using mutual exclusion is the simplest way to share a peripheral. | 9 | Using mutual exclusion is the simplest way to share a peripheral. |
| 10 | 10 | ||
| 11 | TIP: Dependencies needed to run this example link:/book/dev/basic_application.html#_the_cargo_toml[can be found here]. | 11 | TIP: Dependencies needed to run this example link:#_the_cargo_toml[can be found here]. |
| 12 | [,rust] | 12 | [,rust] |
| 13 | ---- | 13 | ---- |
| 14 | use defmt::*; | 14 | use defmt::*; |
| @@ -78,7 +78,7 @@ To indicate that the pin will be set to an Output. The `AnyPin` could have been | |||
| 78 | 78 | ||
| 79 | A channel is another way to ensure exclusive access to a resource. Using a channel is great in the cases where the access can happen at a later point in time, allowing you to enqueue operations and do other things. | 79 | A channel is another way to ensure exclusive access to a resource. Using a channel is great in the cases where the access can happen at a later point in time, allowing you to enqueue operations and do other things. |
| 80 | 80 | ||
| 81 | TIP: Dependencies needed to run this example link:/book/dev/basic_application.html#_the_cargo_toml[can be found here]. | 81 | TIP: Dependencies needed to run this example link:#_the_cargo_toml[can be found here]. |
| 82 | [,rust] | 82 | [,rust] |
| 83 | ---- | 83 | ---- |
| 84 | use defmt::*; | 84 | use defmt::*; |
