From df58b7293b935b515d5963aab5418cc5d530ba2e Mon Sep 17 00:00:00 2001 From: PeterKietzmann Date: Wed, 26 Sep 2018 11:06:05 +0200 Subject: [PATCH] cpu/msp430: increase default stacksize for gnrc_ipv6 thread --- cpu/msp430_common/include/cpu_conf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpu/msp430_common/include/cpu_conf.h b/cpu/msp430_common/include/cpu_conf.h index f33ab97bda..09e0aa9ba4 100644 --- a/cpu/msp430_common/include/cpu_conf.h +++ b/cpu/msp430_common/include/cpu_conf.h @@ -71,6 +71,10 @@ extern "C" { /* TODO: Make this value overall MTU dependent */ # define GNRC_PKTBUF_SIZE (2560) #endif + +#ifndef GNRC_IPV6_STACK_SIZE +# define GNRC_IPV6_STACK_SIZE (512) +#endif /** @} */ #ifdef __cplusplus