[target][stm32746g-eval2] remove STATIC_HEAP

STATIC_HEAP is mostly obsoleted by the page based heap novm pooling
system.

May add it back at some time, but at the moment it's unused.
This commit is contained in:
Travis Geiselbrecht
2015-10-19 12:57:55 -07:00
parent 35b2f85f6a
commit 6aa5f51cf9

View File

@@ -8,13 +8,9 @@ PLATFORM := stm32f7xx
SDRAM_SIZE := 0x02000000
SDRAM_BASE := 0xc0000000
LCD_M_SIZE := 0x0012c000
EXT_SRAM_BASE := 0x68000000
EXT_SRAM_SIZE := 0x00200000
HEAP_START := 0xc012c000
HEAP_SIZE := 0x01ed4000
GLOBAL_DEFINES += \
ENABLE_UART1=1 \
ENABLE_SDRAM=1 \
@@ -23,10 +19,6 @@ GLOBAL_DEFINES += \
EXT_SRAM_BASE=$(EXT_SRAM_BASE) \
EXT_SRAM_SIZE=$(EXT_SRAM_SIZE) \
ENABLE_EXT_SRAM=1 \
\
WITH_STATIC_HEAP=1 \
HEAP_START=$(HEAP_START) \
HEAP_LEN=$(HEAP_SIZE) \
\
PKTBUF_POOL_SIZE=16