From d769e562c04261d86916f53c83e44d1a51f59c76 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Tue, 16 Aug 2022 11:23:04 +0200 Subject: 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 --- docs/modules/ROOT/pages/bootloader.adoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docs/modules/ROOT/pages/bootloader.adoc') 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 == Design -The bootloader divides the storage into 4 main partitions, configured by a linker script: +image::bootloader_flash.png[Bootloader flash layout] + +The bootloader divides the storage into 4 main partitions, configurable when creating the bootloader +instance or via linker scripts: * BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash. * 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. -- cgit