joey shelton / LED_Demo

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by Maxim nexpaq

Embed: (wiki syntax)

« Back to documentation index

thread_management_api.h File Reference

thread_management_api.h File Reference

Public API for managing Thread network configuration. More...

Go to the source code of this file.

Typedefs

typedef int( management_set_response_cb )(int8_t interface_id, management_state_e status)
 Callback to display the result of management set command.
typedef int( management_get_response_cb )(int8_t instance_id, management_state_e status, uint8_t *response_message_ptr, uint16_t response_message_len)
 Callback for reading Thread management information.

Enumerations

enum  management_state_e
 

Thread management state.

More...

Functions

int thread_management_register (int8_t interface_id)
 Register Thread management interface.
int thread_management_unregister (int8_t instance_id)
 Unregister Thread management interface.
int thread_management_set_security_policy (int8_t instance_id, uint8_t options, uint16_t rotation_time, management_set_response_cb *cb_ptr)
 Set the Thread security policy.
int thread_management_set_steering_data (int8_t instance_id, uint16_t session_id, uint8_t *steering_data_ptr, uint8_t steering_data_len, management_set_response_cb *cb_ptr)
 Set the steering data.
int thread_management_set_commissioning_data_timestamp (int8_t instance_id, uint64_t time, management_set_response_cb *cb_ptr)
 Set the Thread commissioning data timestamp.
int thread_management_get (int8_t instance_id, uint8_t dst_addr[static 16], char *uri_ptr, uint8_t *fields_ptr, uint8_t fields_count, management_get_response_cb *cb_ptr)
 Get Thread management fields.
int thread_management_set (int8_t instance_id, uint8_t dst_addr[static 16], char *uri_ptr, uint8_t *data_ptr, uint8_t data_len, management_set_response_cb *cb_ptr)
 Set Thread management fields.

Detailed Description

Public API for managing Thread network configuration.

This interface enables modification and reading the Thread network parameters.

Thread management can modify the following values in the Thread network: * [Network Name] (Read/write) * [Security Policy] (Read/write) * [Steering Data] (Read/write) * [Commissioning Data Timestamp] (Read/write) * [Commissioning Credential] PSKc (Write only) * [Network Master Key] (Read only when policy allows) * [Network Key Sequence] (Read only when policy allows) * [Network Mesh-Local ULA] (Read only) * [Border Router Locator] (Read only) * [Commissioner Session ID] (Read only) * [XPANID] (Read only) * [PANID] (Read only) * [Channel] (Read only)

Definition in file thread_management_api.h.


Typedef Documentation

typedef int( management_get_response_cb)(int8_t instance_id, management_state_e status, uint8_t *response_message_ptr, uint16_t response_message_len)

Callback for reading Thread management information.

Result message containing the Thread management TLV message. This message can be parsed with thread_meshcop_lib.h.

Parameters:
instance_idThe ID of the management session.
statusResult of the request.
response_message_ptrA meshcop TLV structure pointer containing the requested TLVs.
response_message_lenThe length of the message.
Returns:
0 Success.
<0 Fail.

Definition at line 143 of file thread_management_api.h.

typedef int( management_set_response_cb)(int8_t interface_id, management_state_e status)

Callback to display the result of management set command.

This callback is called when the server responds to the management set command. This can fail if the leader rejects the request or the request times out.

Parameters:
interface_idThe interface ID of the Thread network.
statusResult of the request.

Definition at line 81 of file thread_management_api.h.


Enumeration Type Documentation

Thread management state.

Definition at line 50 of file thread_management_api.h.


Function Documentation

int thread_management_get ( int8_t  instance_id,
uint8_t  dst_addr[static 16],
char *  uri_ptr,
uint8_t *  fields_ptr,
uint8_t  fields_count,
management_get_response_cb cb_ptr 
)

Get Thread management fields.

Comments from PEKKA: please rewrite the parameter descriptions below. Read Thread management field values from the leader of the Thread network.

Parameters:
interface_idThe interface ID where the request was made.
dst_addrDestination address for remote if address is not given sent to leader of network or if native commissioner sent to Border router.
uri_ptrThe ASCII string for the URI. Can be Active (default if NULL)/Pending/Commissioner URI.
fields_ptrThe fields to be read from the leader from the network. Array of MESHCOP TLV defines from thread_meshcop_lib.h
fields_lencount of fields in the fields_ptr array.
cb_ptrcallback function to inform the result of the operation. Can be NULL if no result code needed.
Returns:
0, Success.
<0 Fail.
int thread_management_register ( int8_t  interface_id )

Register Thread management interface.

Parameters:
interface_idInterface ID of the Thread network.
Returns:
A handle for the management interface.
int thread_management_set ( int8_t  instance_id,
uint8_t  dst_addr[static 16],
char *  uri_ptr,
uint8_t *  data_ptr,
uint8_t  data_len,
management_set_response_cb cb_ptr 
)

Set Thread management fields.

Set Thread management field values to the leader of the Thread network.

Parameters:
interface_idInterface id where the request was made.
dst_addrDestination address for remote if address is not given sent to leader of network or if native commissioner sent to Border router.
uri_ptrAscii string for the URI. Can be Active(default if NULL)/Pending/Commissioner URI.
data_ptrfields wanted to set to the leader. Array of MESHCOP TLV defines from thread_meshcop_lib.h
data_lenlength of data in the data_ptr.
cb_ptrcallback function to inform the result of the operation. Can be NULL if no result code needed.
int thread_management_set_commissioning_data_timestamp ( int8_t  instance_id,
uint64_t  time,
management_set_response_cb cb_ptr 
)

Set the Thread commissioning data timestamp.

Parameters:
instance_idthe ID of the management session.
timeUpper 48 bits is the timestamp in seconds since the start of unix time, lower 16 bits are fractional portion of time. If the last bit is set to 1, the commissioner has accurate time.
cb_ptrA callback function indicating the result of the operation. Can be NULL if no result code needed.
Returns:
0 Success.
<0 Fail.
int thread_management_set_security_policy ( int8_t  instance_id,
uint8_t  options,
uint16_t  rotation_time,
management_set_response_cb cb_ptr 
)

Set the Thread security policy.

Parameters:
instance_idThe ID of the management session.
optionsSecurity policy options: bit 8 Out-of-band commissioning restricted. bit 7 Native commissioner restricted.
rotation_timeThread key rotation time in hours.
cb_ptrA callback function indicating the result of the operation. Can be NULL if no result code needed.
Returns:
0 Success.
<0 Fail.
int thread_management_set_steering_data ( int8_t  instance_id,
uint16_t  session_id,
uint8_t *  steering_data_ptr,
uint8_t  steering_data_len,
management_set_response_cb cb_ptr 
)

Set the steering data.

Steering data can be either:

  • Empty to decline joining.
  • Any length with all bits set to 0 to decline joining.
  • Any length with all bits 1 to allow anyone to join.
  • Bloom filter to guide which device can join.

If a Bloom filter is present it can be any length between 1-16 bytes. The first bit of the Bloom filter indicates whether to use 0 == EUI-64 or 1 == bottom 24 bits of EUI-64.

Parameters:
instance_idThe ID of the management session.
session_idThe commissioning session id that needs to be added
steering_data_ptrA pointer to new steering data.
steering_data_lenThe length of the new steering data.
cb_ptrA callback function indicating the result of the operation. Can be NULL if no result code needed.
Returns:
0 Success.
<0 Fail.
int thread_management_unregister ( int8_t  instance_id )

Unregister Thread management interface.

Parameters:
instance_idID of the management session.