aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-05-20 18:29:54 +0000
committerGitHub <[email protected]>2024-05-20 18:29:54 +0000
commitc74acae7c0f5475422dfef5d1e184acfe2f569b0 (patch)
treeda653caa64f5d23f47a41accd618fe7b3607280d
parent5bc1e1793d87b8c2331ac50eb80e0ca8b8f71a53 (diff)
parent98b06d764629540f7a391f047153d4a5618e8f23 (diff)
Merge pull request #2972 from cacharle/patch-1
Fix typo in sharing_peripherals.adoc
-rw-r--r--docs/modules/ROOT/pages/sharing_peripherals.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/sharing_peripherals.adoc b/docs/modules/ROOT/pages/sharing_peripherals.adoc
index 784239fb1..6bcd56b01 100644
--- a/docs/modules/ROOT/pages/sharing_peripherals.adoc
+++ b/docs/modules/ROOT/pages/sharing_peripherals.adoc
@@ -125,4 +125,4 @@ async fn toggle_led(control: Sender<'static, ThreadModeRawMutex, LedState, 64>,
125---- 125----
126 126
127This example replaces the Mutex with a Channel, and uses another task (the main loop) to drive the LED. The advantage of this approach is that only a single task references the peripheral, separating concerns. However, using a Mutex has a lower overhead and might be necessary if you need to ensure 127This example replaces the Mutex with a Channel, and uses another task (the main loop) to drive the LED. The advantage of this approach is that only a single task references the peripheral, separating concerns. However, using a Mutex has a lower overhead and might be necessary if you need to ensure
128that the operation is ecompleted before continuing to do other work in your task. 128that the operation is completed before continuing to do other work in your task.