Miscellaneous#
This module includes platform abstractions for miscellaneous behaviors.
Enumerations#
Enumeration of possible reset reason codes.
Enumeration of micro-controller's power states.
Functions#
Performs a software reset on the platform, if supported.
Performs a hardware reset on the platform to launch bootloader mode, if supported.
Returns the reason for the last platform reset.
Provides a platform specific implementation for assert.
Performs a platform specific operation to wake the host MCU.
Sets the desired MCU power state.
Gets the current desired MCU power state.
Logs a crash dump using OpenThread logging APIs.
Enumeration Documentation#
otPlatResetReason#
otPlatResetReason
Enumeration of possible reset reason codes.
These are in the same order as the Spinel reset reason codes.
Enumerator | |
---|---|
OT_PLAT_RESET_REASON_POWER_ON | |
OT_PLAT_RESET_REASON_EXTERNAL | |
OT_PLAT_RESET_REASON_SOFTWARE | |
OT_PLAT_RESET_REASON_FAULT | |
OT_PLAT_RESET_REASON_CRASH | |
OT_PLAT_RESET_REASON_ASSERT | |
OT_PLAT_RESET_REASON_OTHER | |
OT_PLAT_RESET_REASON_UNKNOWN | |
OT_PLAT_RESET_REASON_WATCHDOG | |
OT_PLAT_RESET_REASON_COUNT |
84
of file include/openthread/platform/misc.h
otPlatMcuPowerState#
otPlatMcuPowerState
Enumeration of micro-controller's power states.
These values are used for NCP configuration when OPENTHREAD_CONFIG_NCP_ENABLE_MCU_POWER_STATE_CONTROL
is enabled.
The power state specifies the desired power state of NCP's micro-controller (MCU) when the underlying platform's operating system enters idle mode (i.e., all active tasks/events are processed and the MCU can potentially enter a energy-saving power state).
The power state primarily determines how the host should interact with the NCP and whether the host needs an external trigger (a "poke") to NCP before it can communicate with the NCP or not.
After a reset, the MCU power state MUST be OT_PLAT_POWER_STATE_ON
.
Enumerator | |
---|---|
OT_PLAT_MCU_POWER_STATE_ON | NCP's MCU stays on and active all the time. |
OT_PLAT_MCU_POWER_STATE_LOW_POWER | NCP's MCU can enter low-power (energy-saving) state. |
OT_PLAT_MCU_POWER_STATE_OFF | NCP is fully off. |
138
of file include/openthread/platform/misc.h
Function Documentation#
otPlatReset#
void otPlatReset (otInstance * aInstance)
Performs a software reset on the platform, if supported.
[in] | aInstance | The OpenThread instance structure. |
62
of file include/openthread/platform/misc.h
otPlatResetToBootloader#
otError otPlatResetToBootloader (otInstance * aInstance)
Performs a hardware reset on the platform to launch bootloader mode, if supported.
[in] | aInstance | The OpenThread instance structure. |
Used when OPENTHREAD_CONFIG_PLATFORM_BOOTLOADER_MODE_ENABLE
is enabled.
76
of file include/openthread/platform/misc.h
otPlatGetResetReason#
otPlatResetReason otPlatGetResetReason (otInstance * aInstance)
Returns the reason for the last platform reset.
[in] | aInstance | The OpenThread instance structure. |
105
of file include/openthread/platform/misc.h
otPlatAssertFail#
void otPlatAssertFail (const char * aFilename, int aLineNumber)
Provides a platform specific implementation for assert.
[in] | aFilename | The name of the file where the assert occurred. |
[in] | aLineNumber | The line number in the file where the assert occurred. |
114
of file include/openthread/platform/misc.h
otPlatWakeHost#
void otPlatWakeHost (void )
Performs a platform specific operation to wake the host MCU.
N/A |
This is used only for NCP configurations.
121
of file include/openthread/platform/misc.h
otPlatSetMcuPowerState#
otError otPlatSetMcuPowerState (otInstance * aInstance, otPlatMcuPowerState aState)
Sets the desired MCU power state.
[in] | aInstance | A pointer to OpenThread instance. |
[in] | aState | The new MCU power state. |
This is only applicable and used for NCP configuration when OPENTHREAD_CONFIG_NCP_ENABLE_MCU_POWER_STATE_CONTROL
is enabled.
192
of file include/openthread/platform/misc.h
otPlatGetMcuPowerState#
otPlatMcuPowerState otPlatGetMcuPowerState (otInstance * aInstance)
Gets the current desired MCU power state.
[in] | aInstance | A pointer to OpenThread instance. |
This is only applicable and used for NCP configuration when OPENTHREAD_CONFIG_NCP_ENABLE_MCU_POWER_STATE_CONTROL
is enabled.
After a reset, the power state MUST return OT_PLAT_POWER_STATE_ON
. During operation, power state SHOULD only change through an explicit successful call to otPlatSetMcuPowerState()
.
Returns
The current power state.
208
of file include/openthread/platform/misc.h
otPlatLogCrashDump#
otError otPlatLogCrashDump (void )
Logs a crash dump using OpenThread logging APIs.
N/A |
Note
This API is an optional logging platform API. It's up to the platform layer to implement it.
218
of file include/openthread/platform/misc.h