aboutsummaryrefslogtreecommitdiff
path: root/docs/pages/layer_by_layer.adoc
diff options
context:
space:
mode:
authorKrzysztof Królczyk <[email protected]>2025-02-10 16:14:51 +0100
committerKrzysztof Królczyk <[email protected]>2025-02-11 10:08:47 +0100
commit4b809af90538b83de42d60eb6ac5b8509feaeecf (patch)
tree5ea6a623342bddee7c54a9a4ecffde437a27da52 /docs/pages/layer_by_layer.adoc
parentf09277b2a37cb77d3adf6675146c282fbcb9c955 (diff)
fix: #3760 - typo in docs
Signed-off-by: Krzysztof Królczyk <[email protected]>
Diffstat (limited to 'docs/pages/layer_by_layer.adoc')
-rw-r--r--docs/pages/layer_by_layer.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/pages/layer_by_layer.adoc b/docs/pages/layer_by_layer.adoc
index 7852d27b7..7dba11b5e 100644
--- a/docs/pages/layer_by_layer.adoc
+++ b/docs/pages/layer_by_layer.adoc
@@ -76,7 +76,7 @@ The async version looks very similar to the HAL version, apart from a few minor
76* The peripheral initialization is done by the main macro, and is handed to the main task. 76* The peripheral initialization is done by the main macro, and is handed to the main task.
77* Before checking the button state, the application is awaiting a transition in the pin state (low -> high or high -> low). 77* Before checking the button state, the application is awaiting a transition in the pin state (low -> high or high -> low).
78 78
79When `button.await_for_any_edge().await` is called, the executor will pause the main task and put the microcontroller in sleep mode, unless there are other tasks that can run. Internally, the Embassy HAL has configured the interrupt handler for the button (in `ExtiInput`), so that whenever an interrupt is raised, the task awaiting the button will be woken up. 79When `button.wait_for_any_edge().await` is called, the executor will pause the main task and put the microcontroller in sleep mode, unless there are other tasks that can run. Internally, the Embassy HAL has configured the interrupt handler for the button (in `ExtiInput`), so that whenever an interrupt is raised, the task awaiting the button will be woken up.
80 80
81The minimal overhead of the executor and the ability to run multiple tasks "concurrently" combined with the enormous simplification of the application, makes `async` a great fit for embedded. 81The minimal overhead of the executor and the ability to run multiple tasks "concurrently" combined with the enormous simplification of the application, makes `async` a great fit for embedded.
82 82