From 4da502e138d5456725e3696d52810f3dc596b48f Mon Sep 17 00:00:00 2001 From: scilor Date: Wed, 27 Apr 2022 20:59:22 +0200 Subject: [PATCH] Workaround for canaries crashing on 0x20040000 with new compiler --- cores/cc3200/cc3200.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/cc3200/cc3200.ld b/cores/cc3200/cc3200.ld index 6b2a2ec..8c12d04 100644 --- a/cores/cc3200/cc3200.ld +++ b/cores/cc3200/cc3200.ld @@ -19,7 +19,7 @@ RAM_LOW_SIZE = 0x4000; MEMORY { - SRAM (rwx) : ORIGIN = 0x20004000, LENGTH = 0x3C000 /* 0x30000 only 196kB?! for 256kB use 0x3C000 + 0x4000 lower mem (todo)*/ + SRAM (rwx) : ORIGIN = 0x20004000, LENGTH = 0x3BFFF /* 0x30000 only 196kB?! for 256kB use 0x3C000 + 0x4000 lower mem (todo)*/ SRAM_LOW (rw) : ORIGIN = 0x20000000, LENGTH = 0x4000 /* TODO */ }