Skip to content

Commit

Permalink
dynamic: Adjust partition layout for optimized performance
Browse files Browse the repository at this point in the history
* Reserved first two 16K blocks for bootloader
* Designated second two 16K blocks for storage
* Updated app size to align with 64K + 128K * N for efficient use of memory
  • Loading branch information
xingrz committed Jan 25, 2023
1 parent d25c55c commit 9346bf9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions config/boards/arm/hw75_dynamic/hw75_dynamic.dts
Original file line number Diff line number Diff line change
Expand Up @@ -242,17 +242,17 @@

bootloader_partition: partition@0 {
label = "bootloader";
reg = <0x00000000 DT_SIZE_K(64)>;
reg = <0x00000000 DT_SIZE_K(32)>;
};

code_partition: partition@10000 {
label = "code_partition";
reg = <0x00010000 DT_SIZE_K(256)>;
storage_partition: partition@8000 {
label = "storage";
reg = <0x00008000 DT_SIZE_K(32)>;
};

storage_partition: partition@e0000 {
label = "storage";
reg = <0x000e0000 DT_SIZE_K(128)>;
code_partition: partition@10000 {
label = "code_partition";
reg = <0x00010000 DT_SIZE_K(192)>;
};
};
};

0 comments on commit 9346bf9

Please sign in to comment.