aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2021-12-09 10:06:17 +0100
committerUlf Lilleengen <[email protected]>2021-12-09 10:06:17 +0100
commitc12337920f9bae4b3a775dd23964b1ad1607f866 (patch)
treee5cb323ecc6cb943f1e6914c973140ddea5e7642 /docs
parent4f4b19d920c103453b2b0f9ce7994ca830ddb2d7 (diff)
Initial PoC of embassy book
Diffstat (limited to 'docs')
-rw-r--r--docs/antora.yml5
-rw-r--r--docs/modules/ROOT/nav.adoc4
-rw-r--r--docs/modules/ROOT/pages/index.adoc24
-rw-r--r--docs/modules/ROOT/pages/nrf.adoc3
-rw-r--r--docs/modules/ROOT/pages/runtime.adoc3
-rw-r--r--docs/modules/ROOT/pages/stm32.adoc3
-rw-r--r--docs/modules/ROOT/pages/traits.adoc3
7 files changed, 45 insertions, 0 deletions
diff --git a/docs/antora.yml b/docs/antora.yml
new file mode 100644
index 000000000..807c97c3f
--- /dev/null
+++ b/docs/antora.yml
@@ -0,0 +1,5 @@
1name: embassy
2title: Embassy
3version: dev
4nav:
5 - modules/ROOT/nav.adoc
diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc
new file mode 100644
index 000000000..228ead788
--- /dev/null
+++ b/docs/modules/ROOT/nav.adoc
@@ -0,0 +1,4 @@
1* xref:runtime.adoc[Runtime]
2* xref:traits.adoc[Traits]
3* xref:nrf.adoc[Nordic nRF HAL]
4* xref:stm32.adoc[STM32 HAL]
diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc
new file mode 100644
index 000000000..5bc35ef43
--- /dev/null
+++ b/docs/modules/ROOT/pages/index.adoc
@@ -0,0 +1,24 @@
1= Embassy
2
3Embassy is a project to make async/await a first-class option for embedded development.
4
5== Traits and types
6
7`embassy` provides a set of traits and types specifically designed for `async` usage.
8
9* `embassy::io`: `AsyncBufRead`, `AsyncWrite`. Traits for byte-stream IO, essentially `no_std` compatible versions of `futures::io`.
10* `embassy::traits::flash`: Flash device trait.
11* `embassy::time`: `Clock` and `Alarm` traits. Std-like `Duration` and `Instant`.
12* More traits for SPI, I2C, UART async HAL coming soon.
13
14== Executor
15
16The `embassy::executor` module provides an async/await executor designed for embedded usage.
17
18* No `alloc`, no heap needed. Task futures are statically allocated.
19* No "fixed capacity" data structures, executor works with 1 or 1000 tasks without needing config/tuning.
20* Integrated timer queue: sleeping is easy, just do `Timer::after(Duration::from_secs(1)).await;`.
21* No busy-loop polling: CPU sleeps when there's no work to do, using interrupts or `WFE/SEV`.
22* Efficient polling: a wake will only poll the woken task, not all of them.
23* Fair: a task can't monopolize CPU time even if it's constantly being woken. All other tasks get a chance to run before a given task gets polled for the second time.
24* Creating multiple executor instances is supported, to run tasks with multiple priority levels. This allows higher-priority tasks to preempt lower-priority tasks.
diff --git a/docs/modules/ROOT/pages/nrf.adoc b/docs/modules/ROOT/pages/nrf.adoc
new file mode 100644
index 000000000..21c388f61
--- /dev/null
+++ b/docs/modules/ROOT/pages/nrf.adoc
@@ -0,0 +1,3 @@
1= Embassy nRF HAL
2
3TODO
diff --git a/docs/modules/ROOT/pages/runtime.adoc b/docs/modules/ROOT/pages/runtime.adoc
new file mode 100644
index 000000000..2704f298b
--- /dev/null
+++ b/docs/modules/ROOT/pages/runtime.adoc
@@ -0,0 +1,3 @@
1= Embassy runtime
2
3TODO
diff --git a/docs/modules/ROOT/pages/stm32.adoc b/docs/modules/ROOT/pages/stm32.adoc
new file mode 100644
index 000000000..328f69e2a
--- /dev/null
+++ b/docs/modules/ROOT/pages/stm32.adoc
@@ -0,0 +1,3 @@
1= Embassy STM32 HAL
2
3TODO
diff --git a/docs/modules/ROOT/pages/traits.adoc b/docs/modules/ROOT/pages/traits.adoc
new file mode 100644
index 000000000..843cc293e
--- /dev/null
+++ b/docs/modules/ROOT/pages/traits.adoc
@@ -0,0 +1,3 @@
1= Embassy Traits
2
3TODO