From d0bcfa72ff0ae60f9d527e9214970e5857ab70b2 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Mon, 13 Jun 2011 14:39:22 +0000 Subject: [PATCH] Remove the heap used with the new MicroBlaze demo. As heap_2.c is being used, the heap area set up in the linker script is not required. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1455 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- .../SDKProjects/RTOSDemoSource/src/lscript.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/src/lscript.ld b/Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/src/lscript.ld index f70a4ba19..c076755fb 100644 --- a/Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/src/lscript.ld +++ b/Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/src/lscript.ld @@ -11,7 +11,7 @@ /*******************************************************************/ _STACK_SIZE = DEFINED(_STACK_SIZE) ? _STACK_SIZE : 0x400; -_HEAP_SIZE = DEFINED(_HEAP_SIZE) ? _HEAP_SIZE : 0x400; +_HEAP_SIZE = DEFINED(_HEAP_SIZE) ? _HEAP_SIZE : 0x8; /* Define Memories in the system */ -- 2.39.5