Increased malloc margin to 128.
https://github.com/arduino/Arduino/pull/1329#issuecomment-15609148 See #857 #1329
This commit is contained in:
parent
dc7b070c81
commit
f39a246be5
|
@ -52,7 +52,7 @@
|
||||||
|
|
||||||
/* May be changed by the user only before the first malloc() call. */
|
/* 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_start = &__heap_start;
|
||||||
char *__malloc_heap_end = &__heap_end;
|
char *__malloc_heap_end = &__heap_end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue