You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We keep on re-reading TLV in various places in MCUboot, which usually means that we try to access flash, and iterate over some are of it, several times.
We could probably have an option to cache the TLV read and keep it in memory to reduce on need to access storage.
What are the costs?
Some additional logic for read and additional memory for caching.
What do we gain?
Reduce need to access flash every time so improved boot time and reduced power consumption during boot phase, especially when it is needed to read TLV from externally connected device.
The text was updated successfully, but these errors were encountered:
This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.
What is a problem?
We keep on re-reading TLV in various places in MCUboot, which usually means that we try to access flash, and iterate over some are of it, several times.
We could probably have an option to cache the TLV read and keep it in memory to reduce on need to access storage.
What are the costs?
Some additional logic for read and additional memory for caching.
What do we gain?
Reduce need to access flash every time so improved boot time and reduced power consumption during boot phase, especially when it is needed to read TLV from externally connected device.
The text was updated successfully, but these errors were encountered: