mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7826 from SiliconLabs/fix-lwip-gg11
Fix stack size for LwIP on EFM32GG11pull/7890/head
commit
5c50eadc1b
|
@ -125,7 +125,7 @@
|
|||
"LPC546XX": {
|
||||
"mem-size": 36496
|
||||
},
|
||||
"EFM32GG11-STK3701": {
|
||||
"EFM32GG11_STK3701": {
|
||||
"mem-size": 36560
|
||||
},
|
||||
"RZ_A1_EMAC": {
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue