Modules#
Commissioner#
This module includes functions for the Thread Commissioner role.
Enumerations#
This enumeration defines the Commissioner State.
This enumeration defines a Joiner Event on the Commissioner.
This enumeration defines a Joiner Info Type.
Typedefs#
This enumeration defines the Commissioner State.
This enumeration defines a Joiner Event on the Commissioner.
This structure represents the steering data.
This structure represents a Commissioning Dataset.
This structure represents a Joiner PSKd.
This enumeration defines a Joiner Info Type.
This structure represents a Joiner Info.
This function pointer is called whenever the commissioner state changes.
This function pointer is called whenever the joiner state changes.
This function pointer is called when the Commissioner receives an Energy Report.
This function pointer is called when the Commissioner receives a PAN ID Conflict message.
Functions#
This function enables the Thread Commissioner role.
This function disables the Thread Commissioner role.
This function returns the Commissioner Id.
This function sets the Commissioner Id.
This function adds a Joiner entry.
This function adds a Joiner entry with a given Joiner Discerner value.
This method get joiner info at aIterator position.
This function removes a Joiner entry.
This function removes a Joiner entry.
This function gets the Provisioning URL.
This function sets the Provisioning URL.
This function sends an Announce Begin message.
This function sends an Energy Scan Query message.
This function sends a PAN ID Query message.
This function sends MGMT_COMMISSIONER_GET.
This function sends MGMT_COMMISSIONER_SET.
This function returns the Commissioner Session ID.
This function returns the Commissioner State.
Macros#
Minimum size of the Commissioning Passphrase.
Maximum size of the Commissioning Passphrase.
Max size (number of chars) in Provisioning URL string (excludes null char).
Max steering data length (bytes)
Maximum string length of a Joiner PSKd (does not include null char).
Enumeration Documentation#
otCommissionerState#
otCommissionerState
This enumeration defines the Commissioner State.
Enumerator | |
---|---|
OT_COMMISSIONER_STATE_DISABLED | Commissioner role is disabled. |
OT_COMMISSIONER_STATE_PETITION | Currently petitioning to become a Commissioner. |
OT_COMMISSIONER_STATE_ACTIVE | Commissioner role is active. |
otCommissionerJoinerEvent#
otCommissionerJoinerEvent
This enumeration defines a Joiner Event on the Commissioner.
Enumerator | |
---|---|
OT_COMMISSIONER_JOINER_START | |
OT_COMMISSIONER_JOINER_CONNECTED | |
OT_COMMISSIONER_JOINER_FINALIZE | |
OT_COMMISSIONER_JOINER_END | |
OT_COMMISSIONER_JOINER_REMOVED |
otJoinerInfoType#
otJoinerInfoType
This enumeration defines a Joiner Info Type.
Enumerator | |
---|---|
OT_JOINER_INFO_TYPE_ANY | Accept any Joiner (no EUI64 or Discerner is specified). |
OT_JOINER_INFO_TYPE_EUI64 | Joiner EUI-64 is specified ( |
OT_JOINER_INFO_TYPE_DISCERNER | Joiner Discerner is specified ( |
Typedef Documentation#
otCommissionerState#
typedef enum otCommissionerState otCommissionerState
This enumeration defines the Commissioner State.
otCommissionerJoinerEvent#
typedef enum otCommissionerJoinerEvent otCommissionerJoinerEvent
This enumeration defines a Joiner Event on the Commissioner.
otSteeringData#
typedef struct otSteeringData otSteeringData
This structure represents the steering data.
otCommissioningDataset#
typedef struct otCommissioningDataset otCommissioningDataset
This structure represents a Commissioning Dataset.
otJoinerInfoType#
typedef enum otJoinerInfoType otJoinerInfoType
This enumeration defines a Joiner Info Type.
otCommissionerStateCallback#
typedef void(* otCommissionerStateCallback) (otCommissionerState aState, void *aContext) )(otCommissionerState aState, void *aContext)
This function pointer is called whenever the commissioner state changes.
Type | Direction | Argument Name | Description |
---|---|---|---|
[in] | aState | The Commissioner state. | |
[in] | aContext | A pointer to application-specific context. |
otCommissionerJoinerCallback#
typedef void(* otCommissionerJoinerCallback) (otCommissionerJoinerEvent aEvent, const otJoinerInfo *aJoinerInfo, const otExtAddress *aJoinerId, void *aContext) )(otCommissionerJoinerEvent aEvent, const otJoinerInfo *aJoinerInfo, const otExtAddress *aJoinerId, void *aContext)
This function pointer is called whenever the joiner state changes.
Type | Direction | Argument Name | Description |
---|---|---|---|
[in] | aEvent | The joiner event type. | |
[in] | aJoinerInfo | A pointer to the Joiner Info. | |
[in] | aJoinerId | A pointer to the Joiner ID (if not known, it will be NULL). | |
[in] | aContext | A pointer to application-specific context. |
otCommissionerEnergyReportCallback#
typedef void(* otCommissionerEnergyReportCallback) (uint32_t aChannelMask, const uint8_t *aEnergyList, uint8_t aEnergyListLength, void *aContext) )(uint32_t aChannelMask, const uint8_t *aEnergyList, uint8_t aEnergyListLength, void *aContext)
This function pointer is called when the Commissioner receives an Energy Report.
Type | Direction | Argument Name | Description |
---|---|---|---|
[in] | aChannelMask | The channel mask value. | |
[in] | aEnergyList | A pointer to the energy measurement list. | |
[in] | aEnergyListLength | Number of entries in | |
[in] | aContext | A pointer to application-specific context. |
otCommissionerPanIdConflictCallback#
typedef void(* otCommissionerPanIdConflictCallback) (uint16_t aPanId, uint32_t aChannelMask, void *aContext) )(uint16_t aPanId, uint32_t aChannelMask, void *aContext)
This function pointer is called when the Commissioner receives a PAN ID Conflict message.
Type | Direction | Argument Name | Description |
---|---|---|---|
[in] | aPanId | The PAN ID value. | |
[in] | aChannelMask | The channel mask value. | |
[in] | aContext | A pointer to application-specific context. |
Function Documentation#
otCommissionerStart#
otError otCommissionerStart (otInstance * aInstance, otCommissionerStateCallback aStateCallback, otCommissionerJoinerCallback aJoinerCallback, void * aCallbackContext)
This function enables the Thread Commissioner role.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
otCommissionerStateCallback | [in] | aStateCallback | A pointer to a function that is called when the commissioner state changes. |
otCommissionerJoinerCallback | [in] | aJoinerCallback | A pointer to a function that is called with a joiner event occurs. |
void * | [in] | aCallbackContext | A pointer to application-specific context. |
otCommissionerStop#
otError otCommissionerStop (otInstance * aInstance)
This function disables the Thread Commissioner role.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
otCommissionerGetId#
const char * otCommissionerGetId (otInstance * aInstance)
This function returns the Commissioner Id.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
Returns
The Commissioner Id.
otCommissionerSetId#
otError otCommissionerSetId (otInstance * aInstance, const char * aId)
This function sets the Commissioner Id.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const char * | [in] | aId | A pointer to a string character array. Must be null terminated. |
otCommissionerAddJoiner#
otError otCommissionerAddJoiner (otInstance * aInstance, const otExtAddress * aEui64, const char * aPskd, uint32_t aTimeout)
This function adds a Joiner entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const otExtAddress * | [in] | aEui64 | A pointer to the Joiner's IEEE EUI-64 or NULL for any Joiner. |
const char * | [in] | aPskd | A pointer to the PSKd. |
uint32_t | [in] | aTimeout | A time after which a Joiner is automatically removed, in seconds. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerAddJoinerWithDiscerner#
otError otCommissionerAddJoinerWithDiscerner (otInstance * aInstance, const otJoinerDiscerner * aDiscerner, const char * aPskd, uint32_t aTimeout)
This function adds a Joiner entry with a given Joiner Discerner value.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const otJoinerDiscerner * | [in] | aDiscerner | A pointer to the Joiner Discerner. |
const char * | [in] | aPskd | A pointer to the PSKd. |
uint32_t | [in] | aTimeout | A time after which a Joiner is automatically removed, in seconds. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerGetNextJoinerInfo#
otError otCommissionerGetNextJoinerInfo (otInstance * aInstance, uint16_t * aIterator, otJoinerInfo * aJoiner)
This method get joiner info at aIterator position.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to instance. |
uint16_t * | [inout] | aIterator | A pointer to the Joiner Info iterator context. |
otJoinerInfo * | [out] | aJoiner | A reference to Joiner info. |
otCommissionerRemoveJoiner#
otError otCommissionerRemoveJoiner (otInstance * aInstance, const otExtAddress * aEui64)
This function removes a Joiner entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const otExtAddress * | [in] | aEui64 | A pointer to the Joiner's IEEE EUI-64 or NULL for any Joiner. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerRemoveJoinerWithDiscerner#
otError otCommissionerRemoveJoinerWithDiscerner (otInstance * aInstance, const otJoinerDiscerner * aDiscerner)
This function removes a Joiner entry.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const otJoinerDiscerner * | [in] | aDiscerner | A pointer to the Joiner Discerner. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerGetProvisioningUrl#
const char * otCommissionerGetProvisioningUrl (otInstance * aInstance)
This function gets the Provisioning URL.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
Returns
A pointer to the URL string.
otCommissionerSetProvisioningUrl#
otError otCommissionerSetProvisioningUrl (otInstance * aInstance, const char * aProvisioningUrl)
This function sets the Provisioning URL.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const char * | [in] | aProvisioningUrl | A pointer to the Provisioning URL (may be NULL to set as empty string). |
otCommissionerAnnounceBegin#
otError otCommissionerAnnounceBegin (otInstance * aInstance, uint32_t aChannelMask, uint8_t aCount, uint16_t aPeriod, const otIp6Address * aAddress)
This function sends an Announce Begin message.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
uint32_t | [in] | aChannelMask | The channel mask value. |
uint8_t | [in] | aCount | The number of Announcement messages per channel. |
uint16_t | [in] | aPeriod | The time between two successive MLE Announce transmissions (in milliseconds). |
const otIp6Address * | [in] | aAddress | A pointer to the IPv6 destination. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerEnergyScan#
otError otCommissionerEnergyScan (otInstance * aInstance, uint32_t aChannelMask, uint8_t aCount, uint16_t aPeriod, uint16_t aScanDuration, const otIp6Address * aAddress, otCommissionerEnergyReportCallback aCallback, void * aContext)
This function sends an Energy Scan Query message.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
uint32_t | [in] | aChannelMask | The channel mask value. |
uint8_t | [in] | aCount | The number of energy measurements per channel. |
uint16_t | [in] | aPeriod | The time between energy measurements (milliseconds). |
uint16_t | [in] | aScanDuration | The scan duration for each energy measurement (milliseconds). |
const otIp6Address * | [in] | aAddress | A pointer to the IPv6 destination. |
otCommissionerEnergyReportCallback | [in] | aCallback | A pointer to a function called on receiving an Energy Report message. |
void * | [in] | aContext | A pointer to application-specific context. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerPanIdQuery#
otError otCommissionerPanIdQuery (otInstance * aInstance, uint16_t aPanId, uint32_t aChannelMask, const otIp6Address * aAddress, otCommissionerPanIdConflictCallback aCallback, void * aContext)
This function sends a PAN ID Query message.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
uint16_t | [in] | aPanId | The PAN ID to query. |
uint32_t | [in] | aChannelMask | The channel mask value. |
const otIp6Address * | [in] | aAddress | A pointer to the IPv6 destination. |
otCommissionerPanIdConflictCallback | [in] | aCallback | A pointer to a function called on receiving a PAN ID Conflict message. |
void * | [in] | aContext | A pointer to application-specific context. |
Note
Only use this after successfully starting the Commissioner role with otCommissionerStart().
otCommissionerSendMgmtGet#
otError otCommissionerSendMgmtGet (otInstance * aInstance, const uint8_t * aTlvs, uint8_t aLength)
This function sends MGMT_COMMISSIONER_GET.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const uint8_t * | [in] | aTlvs | A pointer to TLVs. |
uint8_t | [in] | aLength | The length of TLVs. |
otCommissionerSendMgmtSet#
otError otCommissionerSendMgmtSet (otInstance * aInstance, const otCommissioningDataset * aDataset, const uint8_t * aTlvs, uint8_t aLength)
This function sends MGMT_COMMISSIONER_SET.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
const otCommissioningDataset * | [in] | aDataset | A pointer to commissioning dataset. |
const uint8_t * | [in] | aTlvs | A pointer to TLVs. |
uint8_t | [in] | aLength | The length of TLVs. |
otCommissionerGetSessionId#
uint16_t otCommissionerGetSessionId (otInstance * aInstance)
This function returns the Commissioner Session ID.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |
Returns
The current commissioner session id.
otCommissionerGetState#
otCommissionerState otCommissionerGetState (otInstance * aInstance)
This function returns the Commissioner State.
Type | Direction | Argument Name | Description |
---|---|---|---|
otInstance * | [in] | aInstance | A pointer to an OpenThread instance. |