InitSingle()
Initializes the single OpenThread instance. Initializes OpenThread and prepares it for subsequent OpenThread API calls. This function must be called before any other calls to OpenThread.
Get()
Returns a reference to the single OpenThread instance.
GetId() const
Gets the instance identifier. The instance identifier is set to a random value when the instance is constructed, and then its value will not change after initialization.
IsInitialized() const
Indicates whether or not the instance is valid/initialized and not yet finalized.
Reset()
Triggers a platform reset. The reset process ensures that all the OpenThread state/info (stored in volatile memory) is erased. Note that this method does not erase any persistent state/info saved in non-volatile memory.
GetLogLevel()
Returns the active log level.
SetLogLevel()
Sets the log level.
Finalize()
Finalizes the OpenThread instance. Should be called when OpenThread instance is no longer in use.
FactoryReset()
Deletes all the settings stored in non-volatile memory, and then triggers a platform reset.
ErasePersistentInfo()
Erases all the OpenThread persistent info (network settings) stored in non-volatile memory. Erase is successful/allowed only if the device is in `disabled` state/role.
GetApplicationCoap()
Returns a reference to application COAP object.
SetDnsNameCompressionEnabled()
Enables/disables the "DNS name compressions" mode. By default DNS name compression is enabled. When disabled, DNS names are appended as full and never compressed. This is applicable to OpenThread's DNS and SRP client/server modules. This is intended for testing only and available under a `REFERENCE_DEVICE` config.
IsDnsNameCompressionEnabled()
Indicates whether the "DNS name compression" mode is enabled or not.
GetBufferInfo()
Retrieves the the Message Buffer information.
ResetBufferInfo()
Resets the Message Buffer information counter tracking maximum number buffers in use at the same time. Resets `mMaxUsedBuffers` in `BufferInfo`.
AfterInit()