Skip to content

Commit ea811e1

Browse files
authored
pbio/platform/ev3/platform.ld: Remove DDR_unused (#367)
This reclaims the memory and makes it available for use. Previously, we needed to reserve this space for the uImage file that was being used but now we use a .elf file so we don't need to reserve any space for the uImage header.
1 parent eb4620a commit ea811e1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/pbio/platform/ev3/platform.ld

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ MEMORY
77
{
88
SRAM_PRU0 (rw) : ORIGIN = 0x80000000, LENGTH = 64K
99
SRAM_PRU1 (rw) : ORIGIN = 0x80010000, LENGTH = 64K
10-
DDR_unused (rwx) : ORIGIN = 0xC0000000, LENGTH = 0x8000
11-
DDR (rwx) : ORIGIN = 0xC0008000, LENGTH = (64M - 0x8000)
10+
DDR (rwx) : ORIGIN = 0xC0000000, LENGTH = 64M
1211
ARM_LRAM (rwx) : ORIGIN = 0xFFFF0000, LENGTH = (8K - 16)
1312
}
1413

0 commit comments

Comments
 (0)