Miscellaneous#
This module includes platform abstractions for miscellaneous behaviors.
Enumerations#
Enumeration of possible reset reason codes.
Enumeration of micro-controller's power states.
Functions#
This function performs a software reset on the platform, if supported.
This function returns the reason for the last platform reset.
This function provides a platform specific implementation for assert.
This function performs a platform specific operation to wake the host MCU.
This function sets the desired MCU power state.
This function gets the current desired MCU power state.
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 |
70
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. |
124
of file include/openthread/platform/misc.h
Function Documentation#
otPlatReset#
void otPlatReset (otInstance * aInstance)
This function performs a software reset on the platform, if supported.
[in] | aInstance | The OpenThread instance structure. |
62
of file include/openthread/platform/misc.h
otPlatGetResetReason#
otPlatResetReason otPlatGetResetReason (otInstance * aInstance)
This function returns the reason for the last platform reset.
[in] | aInstance | The OpenThread instance structure. |
91
of file include/openthread/platform/misc.h
otPlatAssertFail#
void otPlatAssertFail (const char * aFilename, int aLineNumber)
This function 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. |
100
of file include/openthread/platform/misc.h
otPlatWakeHost#
void otPlatWakeHost (void )
This function performs a platform specific operation to wake the host MCU.
N/A |
This is used only for NCP configurations.
107
of file include/openthread/platform/misc.h
otPlatSetMcuPowerState#
otError otPlatSetMcuPowerState (otInstance * aInstance, otPlatMcuPowerState aState)
This function 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.
178
of file include/openthread/platform/misc.h
otPlatGetMcuPowerState#
otPlatMcuPowerState otPlatGetMcuPowerState (otInstance * aInstance)
This function 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.
194
of file include/openthread/platform/misc.h