From f39a246be56a746b15d347e41071df82b398e3d3 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 29 Mar 2013 11:48:35 +0100 Subject: Increased malloc margin to 128. https://github.com/arduino/Arduino/pull/1329#issuecomment-15609148 See #857 #1329 --- cores/arduino/avr-libc/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cores/arduino') diff --git a/cores/arduino/avr-libc/malloc.c b/cores/arduino/avr-libc/malloc.c index 3562532..9dcfe21 100644 --- a/cores/arduino/avr-libc/malloc.c +++ b/cores/arduino/avr-libc/malloc.c @@ -52,7 +52,7 @@ /* May be changed by the user only before the first malloc() call. */ -size_t __malloc_margin = 32; +size_t __malloc_margin = 128; char *__malloc_heap_start = &__heap_start; char *__malloc_heap_end = &__heap_end; -- cgit v1.2.3-18-g5258