Skip to content

Commit da467e0

Browse files
committed
Updated wolfSSL sub-module. Enlarged RAM region to 36KB, which is good for any G07x or higher (note G03x or G04x only have 8KB RAM).
1 parent 78d6de5 commit da467e0

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

hal/stm32g0.ld

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MEMORY
22
{
33
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x8000
4-
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
4+
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00008FFF
55
}
66

77
SECTIONS
@@ -15,11 +15,13 @@ SECTIONS
1515
. = ALIGN(4);
1616
_end_text = .;
1717
} > FLASH
18+
1819
.edidx :
1920
{
2021
. = ALIGN(4);
2122
*(.ARM.exidx*)
2223
} > FLASH
24+
2325
_stored_data = .;
2426
.data : AT (_stored_data)
2527
{

0 commit comments

Comments
 (0)