Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
eamars committed Apr 9, 2024
1 parent 6a82a1f commit e1fb84b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/linker_scripts/bank0.ld
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
MEMORY
{
FLASH_BL(rx) : ORIGIN = 0x10000000, LENGTH = 0x100
FLASH(rx) : ORIGIN = 0x10000100, LENGTH = 1024k - 0x100
FLASH(rx) : ORIGIN = 0x10000100, LENGTH = 1M - 0x100
RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 256k
SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k
SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k
Expand Down
2 changes: 1 addition & 1 deletion scripts/linker_scripts/bank1.ld
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
MEMORY
{
FLASH_BL(rx) : ORIGIN = 0x10000000, LENGTH = 0x100
FLASH(rx) : ORIGIN = 0x10000000 + 1024k, LENGTH = 1024k - 0x100
FLASH(rx) : ORIGIN = 0x10000000 + 1M, LENGTH = 1M - 0x100
RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 256k
SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k
SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k
Expand Down

0 comments on commit e1fb84b

Please sign in to comment.