From 98947961c68dce1cabeea9cb9403911b3055fc75 Mon Sep 17 00:00:00 2001 From: Astro Date: Sat, 22 Jun 2019 00:48:54 +0200 Subject: [PATCH] linker script: bump stack size to 64k for all the network buffers --- link.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link.x b/link.x index d30e056..ec2e260 100644 --- a/link.x +++ b/link.x @@ -1,6 +1,6 @@ ENTRY(_boot_cores); -STACK_SIZE = 0x2000 - 8; +STACK_SIZE = 0x10000 - 8; /* Provide some defaults */ PROVIDE(Reset = _boot_cores);