Skip to content

Commit

Permalink
cpu/esp8266: stack sizes tuned for esp_wifi
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed Jan 24, 2019
1 parent 642c48f commit 04de1e7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cpu/esp8266/include/cpu_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 04de1e7

Please sign in to comment.