Still an issue where connecting to a socket the first time will time out, unsure what the cause of that or where to start, but can ignore for now and figure out more when I have more info later
13 lines
309 B
Plaintext
13 lines
309 B
Plaintext
MEMORY
|
|
{
|
|
RAM : ORIGIN = 0x10000000, LENGTH = 64K
|
|
FLASH : ORIGIN = 0x00000000, LENGTH = 100K
|
|
}
|
|
|
|
REGION_ALIAS("REGION_TEXT", FLASH);
|
|
REGION_ALIAS("REGION_RODATA", FLASH);
|
|
REGION_ALIAS("REGION_DATA", RAM);
|
|
REGION_ALIAS("REGION_BSS", RAM);
|
|
REGION_ALIAS("REGION_HEAP", RAM);
|
|
REGION_ALIAS("REGION_STACK", RAM);
|