diff options
author | Cristian Maglie <c.maglie@bug.st> | 2013-03-29 11:48:35 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2013-03-29 11:48:35 +0100 |
commit | f39a246be56a746b15d347e41071df82b398e3d3 (patch) | |
tree | 490936be8415d93855d53bf537190c848f3cef98 /cores | |
parent | dc7b070c81502c793a50ff18ce44f0e31ebaacc0 (diff) |
Increased malloc margin to 128.
https://github.com/arduino/Arduino/pull/1329#issuecomment-15609148
See #857 #1329
Diffstat (limited to 'cores')
-rw-r--r-- | cores/arduino/avr-libc/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |