Skip to content

Fix stack size for LwIP on EFM32GG11 #7826

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion features/lwipstack/mbed_lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"LPC546XX": {
"mem-size": 36496
},
"EFM32GG11-STK3701": {
"EFM32GG11_STK3701": {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jeez that's subtle!

"mem-size": 36560
},
"RZ_A1_EMAC": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down