aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/pages/runtime.adoc
diff options
context:
space:
mode:
authorDaniel Bevenius <[email protected]>2022-01-06 10:03:50 +0100
committerDaniel Bevenius <[email protected]>2022-01-06 10:03:50 +0100
commit744eafd718e624f1f547df8c3f52f61ed0a0ed99 (patch)
tree9351458cdb789f5a8d08c2079dc016e61d4996e4 /docs/modules/ROOT/pages/runtime.adoc
parentda0c25227f188ebde4ae275f572722d27e578a67 (diff)
Fix typo in runtime.adoc
Diffstat (limited to 'docs/modules/ROOT/pages/runtime.adoc')
-rw-r--r--docs/modules/ROOT/pages/runtime.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/runtime.adoc b/docs/modules/ROOT/pages/runtime.adoc
index 25feb9c29..c10a7102e 100644
--- a/docs/modules/ROOT/pages/runtime.adoc
+++ b/docs/modules/ROOT/pages/runtime.adoc
@@ -25,7 +25,7 @@ If you use the `#[embassy::main]` macro in your application, it creates the `Exe
25 25
26== Interrupts 26== Interrupts
27 27
28Interrupts are a common way for peripherals to signal completion of some operation and fits well with the async execution model. The following diagram describes a typical application flow where (1) a task is polled and is attempting to make progress. The task then (2) instructs the peripheral to perform some operation, and awaits. After some time has passede, (3) an interrupt is raised, marking the completion of the operation. 28Interrupts are a common way for peripherals to signal completion of some operation and fits well with the async execution model. The following diagram describes a typical application flow where (1) a task is polled and is attempting to make progress. The task then (2) instructs the peripheral to perform some operation, and awaits. After some time has passed, (3) an interrupt is raised, marking the completion of the operation.
29 29
30The peripheral HAL then (4) ensures that interrupt signals are routed to to the peripheral and updating the peripheral state with the results of the operation. The executor is then (5) notified that the task should be polled, which it will do. 30The peripheral HAL then (4) ensures that interrupt signals are routed to to the peripheral and updating the peripheral state with the results of the operation. The executor is then (5) notified that the task should be polled, which it will do.
31 31