Skip to content

Commit

Permalink
Merge pull request 'fix memory x file' (#24) from fix-memory-x-file i…
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Jan 10, 2025
2 parents cd222fd + c95558f commit badeea8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flashloader/slot-a-blinky/memory.x
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Special linker script for application slot A with an offset at address 0x3000 */
MEMORY
{
FLASH : ORIGIN = 0x00003000, LENGTH = 0xE800
FLASH : ORIGIN = 0x00003000, LENGTH = 0xE7FC
RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */
}

Expand Down
2 changes: 1 addition & 1 deletion flashloader/slot-b-blinky/memory.x
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Special linker script for application slot B */
MEMORY
{
FLASH : ORIGIN = 0x000117FC, LENGTH = 0xE800
FLASH : ORIGIN = 0x000117FC, LENGTH = 0xE7FC
RAM : ORIGIN = 0x10000000, LENGTH = 0x08000 /* 32K */
}

Expand Down

0 comments on commit badeea8

Please sign in to comment.