4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 09:03:31 +08:00

[bsp][sam7x] Fix compile error. Increase DATA section size in .ld file.

This commit is contained in:
ArdaFu 2017-10-17 14:45:31 +08:00
parent 6bfaa632b9
commit 6ee66d92e7

View File

@ -4,7 +4,7 @@ MEMORY
{
CODE (rx) : ORIGIN = 0x00100000, LENGTH = 0x00040000
/* DATA (rw) : ORIGIN = 0x00200000, LENGTH = 0x00010000 */
DATA (rw) : ORIGIN = 0x00204000, LENGTH = 0x0000C000
DATA (rw) : ORIGIN = 0x00203000, LENGTH = 0x0000D000
}
ENTRY(_start)
SECTIONS