Skip to content

Commit badcfe4

Browse files
committed
Increased malloc margin to 128.
arduino/Arduino#1329 (comment) See #857 #1329
1 parent ab9ebc8 commit badcfe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/arduino/avr-libc/malloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
/* May be changed by the user only before the first malloc() call. */
5454

55-
size_t __malloc_margin = 32;
55+
size_t __malloc_margin = 128;
5656
char *__malloc_heap_start = &__heap_start;
5757
char *__malloc_heap_end = &__heap_end;
5858

0 commit comments

Comments
 (0)