Skip to content

Commit

Permalink
Fix SRAM sizes for S+ and X
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Feb 6, 2025
1 parent ceb82de commit 42efbd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ledger_device_sdk/nanosplus_layout.ld
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MEMORY
{
FLASH (rx) : ORIGIN = 0xc0de0000, LENGTH = 400K
DATA (r) : ORIGIN = 0xc0de0000, LENGTH = 400K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 30K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 44K
}

PAGE_SIZE = 512;
Expand Down
2 changes: 1 addition & 1 deletion ledger_device_sdk/nanox_layout.ld
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MEMORY
{
FLASH (rx) : ORIGIN = 0xc0de0000, LENGTH = 400K
DATA (r) : ORIGIN = 0xc0de0000, LENGTH = 400K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 30K
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 28K
}

PAGE_SIZE = 256;
Expand Down

0 comments on commit 42efbd7

Please sign in to comment.