Remove unused heap_size define

pull/9571/head
deepikabhavnani 2019-02-13 16:32:50 -06:00
parent 60e7a7da98
commit f518a696de
3 changed files with 0 additions and 8 deletions

View File

@ -57,8 +57,6 @@ __ram_vector_table__ = 1;
* the stack where main runs is determined via the RTOS. */
__stack_size__ = MBED_BOOT_STACK_SIZE;
__heap_size__ = 0x6000;
#if !defined(MBED_APP_START)
#define MBED_APP_START 0
#endif

View File

@ -58,9 +58,6 @@ __ram_vector_table__ = 1;
* the stack where main runs is determined via the RTOS. */
__stack_size__ = MBED_BOOT_STACK_SIZE;
__heap_size__ = 0x2800;
HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400;
STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0400;
M_VECTOR_RAM_SIZE = DEFINED(__ram_vector_table__) ? 0x0200 : 0x0;

View File

@ -61,9 +61,6 @@ __ram_vector_table__ = 1;
* the stack where main runs is determined via the RTOS. */
__stack_size__ = MBED_BOOT_STACK_SIZE;
__heap_size__ = 0x6000;
HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400;
STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0400;
M_VECTOR_RAM_SIZE = DEFINED(__ram_vector_table__) ? 0x0140 : 0x0;