From 4b2a5f94c5a47166c5795b3b537d4292a20fd97d Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 13 Jun 2019 13:23:20 +0200 Subject: [PATCH] Update test-app linker script flash size to match configured partition size in target.h --- test-app/RISCV.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-app/RISCV.ld b/test-app/RISCV.ld index b1968c84..ed9167a7 100644 --- a/test-app/RISCV.ld +++ b/test-app/RISCV.ld @@ -4,7 +4,7 @@ ENTRY( _reset ) MEMORY { - FLASH(rxai!w) : ORIGIN = 0x20020100, LENGTH = 128K - 0x100 + FLASH(rxai!w) : ORIGIN = 0x20020100, LENGTH = 256K - 0x100 RAM(wxa!ri) : ORIGIN = 0x80000000, LENGTH = 16K }