-
Notifications
You must be signed in to change notification settings - Fork 3k
Revise heap and stack size for Ethernet of GR-PEACH #7549
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
Conversation
315f778
to
709af11
Compare
features/lwipstack/mbed_lib.json
Outdated
"default-thread-stacksize": 640, | ||
"ppp-thread-stacksize": 896, | ||
"mem-size": 51200 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you align this same as line 130 or 127
I changed stack size because the deafult stack size may not be enough for Ethernet of GR-PEACH(Cortex-A). - Stack size is default size + 128 byte In order to maximize the performance of Ethernet, I changed heap size to below. - Heap size is default size * 32 byte(send descriptor num is 16 and recv descriptoer num is 16).
709af11
to
f272472
Compare
I aligned line 136. Make a sense? |
@0xc0170 |
We are waiting for ipcore approval (review) |
/morph build |
Build : SUCCESSBuild number : 2661 Triggering tests/morph test |
Test : SUCCESSBuild number : 2402 |
Exporter Build : SUCCESSBuild number : 2294 |
Revise heap and stack size for Ethernet of GR-PEACH
Description
I changed stack size because the deafult stack size may not be enough for Ethernet of GR-PEACH(Cortex-A).
Stack size is default size + 128 byte.
In order to maximize the performance of Ethernet, I changed heap size to below.
Heap size is default size * 32 byte(send descriptor num is 16 and recv descriptoer num is 16).
Pull request type