From 04de1e75aaf7dfb0c560f313a8cabda248264318 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht <gunar@schorcht.net> Date: Wed, 16 Jan 2019 19:29:58 +0100 Subject: [PATCH] cpu/esp8266: stack sizes tuned for esp_wifi --- cpu/esp8266/include/cpu_conf.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cpu/esp8266/include/cpu_conf.h b/cpu/esp8266/include/cpu_conf.h index f8eb723dd9..987ca995eb 100644 --- a/cpu/esp8266/include/cpu_conf.h +++ b/cpu/esp8266/include/cpu_conf.h @@ -47,6 +47,9 @@ extern "C" { #define THREAD_STACKSIZE_MAIN (3072) #endif +#ifndef GNRC_IPV6_STACK_SIZE +#define GNRC_IPV6_STACK_SIZE (1536) +#endif #ifndef GNRC_PKTDUMP_STACKSIZE #define GNRC_PKTDUMP_STACKSIZE (THREAD_STACKSIZE_DEFAULT) #endif @@ -74,6 +77,9 @@ extern "C" { #define THREAD_STACKSIZE_MAIN (3072) #endif +#ifndef GNRC_IPV6_STACK_SIZE +#define GNRC_IPV6_STACK_SIZE (1536) +#endif #ifndef GNRC_PKTDUMP_STACKSIZE #define GNRC_PKTDUMP_STACKSIZE (THREAD_STACKSIZE_DEFAULT) #endif -- GitLab