aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/pages/bootloader.adoc
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-08-16 11:41:35 +0000
committerGitHub <[email protected]>2022-08-16 11:41:35 +0000
commit6ea8d5f890d3ff933352d2b958737d7a319064bd (patch)
tree8923160b860b773899e9d73ba0c42383219122b6 /docs/modules/ROOT/pages/bootloader.adoc
parent68931a36d5b04151cbe2bd343253b6bfffd8a7d6 (diff)
parentd769e562c04261d86916f53c83e44d1a51f59c76 (diff)
Merge #905
905: Rewrite documentation using correct module names r=Dirbaio a=lulf * Remove traits section now that we have embedded-hal-async and refer to it. * Explanation that embassy is multiple things. * Bootloader description image Co-authored-by: Ulf Lilleengen <[email protected]>
Diffstat (limited to 'docs/modules/ROOT/pages/bootloader.adoc')
-rw-r--r--docs/modules/ROOT/pages/bootloader.adoc5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/bootloader.adoc b/docs/modules/ROOT/pages/bootloader.adoc
index 3df2daf51..ae92e9d5d 100644
--- a/docs/modules/ROOT/pages/bootloader.adoc
+++ b/docs/modules/ROOT/pages/bootloader.adoc
@@ -20,7 +20,10 @@ In general, the bootloader works on any platform that implements the `embedded-s
20 20
21== Design 21== Design
22 22
23The bootloader divides the storage into 4 main partitions, configured by a linker script: 23image::bootloader_flash.png[Bootloader flash layout]
24
25The bootloader divides the storage into 4 main partitions, configurable when creating the bootloader
26instance or via linker scripts:
24 27
25* BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash. 28* BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash.
26* ACTIVE - Where the main application is placed. The bootloader will attempt to load the application at the start of this partition. This partition is only written to by the bootloader. 29* ACTIVE - Where the main application is placed. The bootloader will attempt to load the application at the start of this partition. This partition is only written to by the bootloader.