-
Hi all! I'm new and just learning. Tell me, what is the exact amount of flash memory required by OpenThread to store the configuration (for Operational Datasets, maybe for something else)? Where can I read about it? BR, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The Thread Conformance Specification states that the maximum size for Operational Datasets is 254 bytes. In OpenThread, this is reflected at: openthread/include/openthread/dataset.h Line 254 in 0f10480 OpenThread stores non-volatile information using the |
Beta Was this translation helpful? Give feedback.
The Thread Conformance Specification states that the maximum size for Operational Datasets is 254 bytes. In OpenThread, this is reflected at:
openthread/include/openthread/dataset.h
Line 254 in 0f10480
OpenThread stores non-volatile information using the
otPlatSettings*()
interface. TheOT_SETTINGS_KEY_*
enum identifies the set of items that OpenThread stores in non-volatile. The amount of non-volatile storage needed will depend on various build configurations (e.g. child table size, use of SRP client, etc.).