From f958b3390509866a795c734c2408057f44e68727 Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Sat, 9 Oct 2021 00:01:58 +1100 Subject: [PATCH] Reserve space in linker script for flash cache --- memory.x | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/memory.x b/memory.x index f874b67..6157c5a 100644 --- a/memory.x +++ b/memory.x @@ -1,7 +1,8 @@ MEMORY { ROM (rx) : ORIGIN = 0x21000000, LENGTH = 128K - ITCM (wxa) : ORIGIN = 0x22008000, LENGTH = 48K + CACHE (wxa) : ORIGIN = 0x22008000, LENGTH = 32K + ITCM (wxa) : ORIGIN = 0x22010000, LENGTH = 16K DTCM (wxa) : ORIGIN = 0x22014000, LENGTH = 48K XIP_FLASH (rwx) : ORIGIN = 0x23000000, LENGTH = 16M WIFI_RAM (wxa) : ORIGIN = 0x42030000, LENGTH = 112K