Merge pull request #7826 from SiliconLabs/fix-lwip-gg11

Fix stack size for LwIP on EFM32GG11
pull/7890/head
Cruz Monrreal 2018-08-21 09:55:48 -05:00 committed by GitHub
commit 5c50eadc1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 */