-
Notifications
You must be signed in to change notification settings - Fork 62
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
[nrfconnect] Reconfigure memory pool sizes #583
base: master
Are you sure you want to change the base?
Conversation
With introduction of dedicated memory pools for nRF70 Wi-Fi driver, redistribute current heap size among the driver heap and kernel heap. Signed-off-by: Ravi Dondaputi <ravi.dondaputi@nordicsemi.no>
5b2d9dd
to
cf283cb
Compare
default 40144 | ||
|
||
config NRF_WIFI_DATA_HEAP_SIZE | ||
default 50576 if BUILD_WITH_TFM |
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.
Where do these values come from? The description says "redistribute", but the given sizes do not sum up to 110720. Are you sure it's safe to decrease the pool size?
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.
If the values are confirmed then, it's great to see the optimization!
I would run the nightly tests on it (we might do it also after the merge?) - @doublemis1
With introduction of dedicated memory pools for nRF70 Wi-Fi driver, redistribute current heap size among the
driver heap and kernel heap.