summaryrefslogtreecommitdiff
path: root/firmware/test/i2c/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/test/i2c/app.lds')
-rw-r--r--firmware/test/i2c/app.lds5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/test/i2c/app.lds b/firmware/test/i2c/app.lds
index 2aa374f8c1..192ee1d2a4 100644
--- a/firmware/test/i2c/app.lds
+++ b/firmware/test/i2c/app.lds
@@ -27,9 +27,10 @@ SECTIONS
27 27
28 .bss : 28 .bss :
29 { 29 {
30 _edata = .;
30 *(.bss) 31 *(.bss)
32 *(COMMON)
31 _end = .; 33 _end = .;
32 _stack = . + 0x1000; 34 _stack = . + 0x80000;
33 _edata = .;
34 } 35 }
35} 36}