aboutsummaryrefslogtreecommitdiff
path: root/embassy-boot
diff options
context:
space:
mode:
authorVega Deftwing <[email protected]>2024-04-11 19:45:38 +0000
committerVega Deftwing <[email protected]>2024-04-11 19:45:38 +0000
commit9053b6b5b3a09e48ed5e2476a5f712c9796828d5 (patch)
treebabd8bcdabe0bc5ab595dde38672695f9e08f692 /embassy-boot
parentf5f776f8157eca01cc4f3560807343889d8dcaef (diff)
Fix spelling and white space mistakes
Diffstat (limited to 'embassy-boot')
-rw-r--r--embassy-boot/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-boot/README.md b/embassy-boot/README.md
index 3c2d45e96..812c43524 100644
--- a/embassy-boot/README.md
+++ b/embassy-boot/README.md
@@ -15,7 +15,7 @@ The bootloader divides the storage into 4 main partitions, configurable when cre
15* BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash, but if you need to debug it and have space available, increasing this to 24kB will allow you to run the bootloader with probe-rs. 15* BOOTLOADER - Where the bootloader is placed. The bootloader itself consumes about 8kB of flash, but if you need to debug it and have space available, increasing this to 24kB will allow you to run the bootloader with probe-rs.
16* ACTIVE - Where the main application is placed. The bootloader will attempt to load the application at the start of this partition. The minimum size required for this partition is the size of your application. 16* ACTIVE - Where the main application is placed. The bootloader will attempt to load the application at the start of this partition. The minimum size required for this partition is the size of your application.
17* DFU - Where the application-to-be-swapped is placed. This partition is written to by the application. This partition must be at least 1 page bigger than the ACTIVE partition. 17* DFU - Where the application-to-be-swapped is placed. This partition is written to by the application. This partition must be at least 1 page bigger than the ACTIVE partition.
18* BOOTLOADER STATE - Where the bootloader stores the current state describing if the active and dfu partitions need to be swapped. 18* BOOTLOADER STATE - Where the bootloader stores the current state describing if the active and dfu partitions need to be swapped.
19 19
20For any partition, the following preconditions are required: 20For any partition, the following preconditions are required:
21 21