Fix stack size for LwIP on EFM32GG11

Typo in the config file made the LwIP stack way too small on EFM32GG11 STK3701 target. Additionally, the EMAC thread stack was slightly too small when debug printing is on.
pull/7826/head
Steven 2018-08-19 14:39:58 +02:00
parent f15dbf2c3d
commit 1cfddb73b7
2 changed files with 6 additions and 1 deletions

View File

@ -125,7 +125,7 @@
"LPC546XX": {
"mem-size": 36496
},
"EFM32GG11-STK3701": {
"EFM32GG11_STK3701": {
"mem-size": 36560
},
"RZ_A1_EMAC": {

View File

@ -34,7 +34,12 @@
/** Timeout in milliseconds for polling the PHY link status */
#define SL_ETH_LINK_POLL_PERIOD_MS (500)
/** Default Ethernet worker thread stack size in bytes */
#include "mbed_trace.h"
#if MBED_CONF_MBED_TRACE_ENABLE == 1
#define SL_ETH_THREAD_STACKSIZE (768)
#else
#define SL_ETH_THREAD_STACKSIZE (512)
#endif
/** Default Ethernet worker thread stack priority */
#define SL_ETH_THREAD_PRIORITY (osPriorityHigh)
/** Name of interface */