aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/pages/getting_started.adoc
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2022-08-16 11:23:04 +0200
committerUlf Lilleengen <[email protected]>2022-08-16 11:27:57 +0200
commitd769e562c04261d86916f53c83e44d1a51f59c76 (patch)
tree8923160b860b773899e9d73ba0c42383219122b6 /docs/modules/ROOT/pages/getting_started.adoc
parent68931a36d5b04151cbe2bd343253b6bfffd8a7d6 (diff)
Rewrite documentation using correct module names
* Remove traits section now that we have embedded-hal-async and refer to it. * Explanation that embassy is multiple things. * Bootloader description image
Diffstat (limited to 'docs/modules/ROOT/pages/getting_started.adoc')
-rw-r--r--docs/modules/ROOT/pages/getting_started.adoc6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/modules/ROOT/pages/getting_started.adoc b/docs/modules/ROOT/pages/getting_started.adoc
index 23102b3b5..f3492a3d0 100644
--- a/docs/modules/ROOT/pages/getting_started.adoc
+++ b/docs/modules/ROOT/pages/getting_started.adoc
@@ -46,15 +46,13 @@ You can run an example by opening a terminal and entering the following commands
46[source, bash] 46[source, bash]
47---- 47----
48cd examples/nrf 48cd examples/nrf
49DEFMT_LOG=info cargo run --bin blinky --release 49cargo run --bin blinky --release
50---- 50----
51 51
52IMPORTANT: The DEFMT_LOG environment variable controls the example log verbosity. If you do not specify it, you will not see anything logged to the console.
53
54== Whats next? 52== Whats next?
55 53
56Congratulations, you have your first Embassy application running! Here are some alternatives on where to go from here: 54Congratulations, you have your first Embassy application running! Here are some alternatives on where to go from here:
57 55
58* Read more about the xref:runtime.adoc[runtime]. 56* Read more about the xref:runtime.adoc[executor].
59* Read more about the xref:hal.adoc[HAL]. 57* Read more about the xref:hal.adoc[HAL].
60* Start xref:basic_application.adoc[writing your application]. 58* Start xref:basic_application.adoc[writing your application].