EmberZNet API for accessing and setting stack information. See Stack Information for documentation.
License#
Copyright 2018 Silicon Laboratories Inc. www.silabs.com
The licensor of this software is Silicon Laboratories Inc. Your use of this software is governed by the terms of Silicon Labs Master Software License Agreement (MSLA) available at www.silabs.com/about-us/legal/master-software-license-agreement. This software is distributed to you in Source Code format and is governed by the sections of the MSLA applicable to Source Code.
/***************************************************************************/
#ifndef SILABS_STACK_INFO_H
#define SILABS_STACK_INFO_H
void emberStackStatusHandler(EmberStatus status);
EmberNetworkStatus emberNetworkState(void);
bool emberStackIsUp(void);
EmberStatus emberWriteNodeData(bool erase);
uint32_t emberMsToNextStackEvent(void);
void emberSetPowerDescriptor(uint16_t descriptor);
#ifdef DOXYGEN_SHOULD_SKIP_THIS
EmberEUI64 emberGetEui64(void);
bool emberIsLocalEui64(EmberEUI64 eui64);
EmberNodeId emberGetNodeId(void);
EmberNodeId emberRadioGetNodeId(void);
void emberSetManufacturerCode(uint16_t code);
void emberSetMaximumIncomingTransferSize(uint16_t size);
void emberSetMaximumOutgoingTransferSize(uint16_t size);
void emberSetDescriptorCapability(uint8_t capability);
#else // Doxygen ignores the following
extern EmberEUI64 sli_802154mac_local_eui64;
#define emberGetEui64() (sli_802154mac_local_eui64)
#define emberIsLocalEui64(eui64) \
(MEMCOMPARE((eui64), sli_802154mac_local_eui64, EUI64_SIZE) == 0)
EmberNodeId emberGetNodeId(void);
EmberNodeId emberRadioGetNodeId(void);
extern uint16_t sli_zigbee_manufacturer_code;
extern uint16_t sli_zigbee_power_descriptor;
extern uint16_t sli_zigbee_maximum_incoming_transfer_size;
extern uint16_t sli_zigbee_maximum_outgoing_transfer_size;
extern uint8_t sli_zigbee_descriptor_capability;
enum {
EMBER_ROUTE_ERROR_NO_ROUTE_AVAILABLE = 0x00,
EMBER_ROUTE_ERROR_TREE_LINK_FAILURE = 0x01,
EMBER_ROUTE_ERROR_NON_TREE_LINK_FAILURE = 0x02,
EMBER_ROUTE_ERROR_LOW_BATTERY_LEVEL = 0x03,
EMBER_ROUTE_ERROR_NO_ROUTING_CAPACITY = 0x04,
EMBER_ROUTE_ERROR_NO_INDIRECT_CAPACITY = 0x05,
EMBER_ROUTE_ERROR_INDIRECT_TRANSACTION_EXPIRY = 0x06,
EMBER_ROUTE_ERROR_TARGET_DEVICE_UNAVAILABLE = 0x07,
EMBER_ROUTE_ERROR_TARGET_ADDRESS_UNALLOCATED = 0x08,
EMBER_ROUTE_ERROR_PARENT_LINK_FAILURE = 0x09,
EMBER_ROUTE_ERROR_VALIDATE_ROUTE = 0x0A,
EMBER_ROUTE_ERROR_SOURCE_ROUTE_FAILURE = 0x0B,
EMBER_ROUTE_ERROR_MANY_TO_ONE_ROUTE_FAILURE = 0x0C,
EMBER_ROUTE_ERROR_ADDRESS_CONFLICT = 0x0D,
EMBER_ROUTE_ERROR_VERIFY_ADDRESSES = 0x0E,
EMBER_ROUTE_ERROR_PAN_IDENTIFIER_UPDATE = 0x0F,
ZIGBEE_NETWORK_STATUS_NETWORK_ADDRESS_UPDATE = 0x10,
ZIGBEE_NETWORK_STATUS_BAD_FRAME_COUNTER = 0x11,
ZIGBEE_NETWORK_STATUS_BAD_KEY_SEQUENCE_NUMBER = 0x12,
ZIGBEE_NETWORK_STATUS_UNKNOWN_COMMAND = 0x13
};
EmberStatus emberSetBrokenRouteErrorCode(uint8_t errorCode);
#define emberSetManufacturerCode(code) \
(sli_zigbee_manufacturer_code = (code))
#define emberSetMaximumIncomingTransferSize(size) \
(sli_zigbee_maximum_incoming_transfer_size = (size))
#define emberSetMaximumOutgoingTransferSize(size) \
(sli_zigbee_maximum_outgoing_transfer_size = (size))
#define emberSetDescriptorCapability(capability) \
(sli_zigbee_descriptor_capability = (capability))
#endif
EmberStatus emberGetNetworkParameters(EmberNetworkParameters *parameters);
EmberStatus emberGetRadioParameters(uint8_t phyIndex, EmberMultiPhyRadioParameters *parameters);
EmberStatus emberGetNodeType(EmberNodeType *resultLocation);
EmberStatus emberSetRadioChannel(uint8_t channel);
EmberStatus emberSetLogicalAndRadioChannel(uint8_t channel);
uint8_t emberGetRadioChannel(void);
EmberStatus emberSetRadioPower(int8_t power);
int8_t emberGetRadioPower(void);
void *emberGetRailHandle(void);
EmberPanId emberGetPanId(void);
EmberPanId emberRadioGetPanId(void);
EmberStatus emberSetRadioIeee802154CcaMode(uint8_t ccaMode);
void emberGetExtendedPanId(uint8_t *resultLocation);
extern const uint8_t emberStackProfileId[];
typedef struct {
uint16_t profileId;
uint16_t deviceId;
uint8_t deviceVersion;
uint8_t inputClusterCount;
uint8_t outputClusterCount;
} EmberEndpointDescription;
typedef struct {
uint8_t endpoint;
EmberEndpointDescription const * description;
uint16_t const * inputClusterList;
uint16_t const * outputClusterList;
} EmberEndpoint;
extern uint8_t emberEndpointCount;
extern EmberEndpoint emberEndpoints[];
uint8_t emberGetEndpoint(uint8_t index);
uint8_t emberGetEndpointCount(void);
bool emberGetEndpointDescription(uint8_t endpoint,
EmberEndpointDescription *result);
uint16_t emberGetEndpointCluster(uint8_t endpoint,
EmberClusterListId listId,
uint8_t listIndex);
#ifdef DOXYGEN_SHOULD_SKIP_THIS
bool emberIsNodeIdValid(EmberNodeId nodeId);
#else
#define emberIsNodeIdValid(nodeId) ((nodeId) < EMBER_DISCOVERY_ACTIVE_NODE_ID)
#endif
EmberNodeId emberLookupNodeIdByEui64(EmberEUI64 eui64);
EmberStatus emberLookupEui64ByNodeId(EmberNodeId nodeId,
EmberEUI64 eui64Return);
void emberCounterHandler(EmberCounterType type, EmberCounterInfo info);
bool emberCounterRequiresPhyIndex(EmberCounterType type);
bool emberCounterRequiresDestinationNodeId(EmberCounterType type);
void emberStackTokenChangedHandler(uint16_t tokenAddress);
bool emberRtosIdleHandler(uint32_t *idleTimeMs);
void emberRtosStackWakeupIsrHandler(void);
EmberStatus emberGetNeighbor(uint8_t index, EmberNeighborTableEntry *result);
EmberStatus emberSetRoutingShortcutThreshold(uint8_t costThresh);
uint8_t emberGetRoutingShortcutThreshold(void);
EmberStatus emberSetInitialNeighborOutgoingCost(uint8_t cost);
uint8_t emberGetInitialNeighborOutgoingCost(void);
void emberResetRejoiningNeighborsFC(bool reset);
bool emberIsResetRejoiningNeighborsFCEnabled(void);
EmberStatus emberGetNeighborFrameCounter(EmberEUI64 nodeEui64,
uint32_t *returnFrameCounter);
EmberStatus emberSetNeighborFrameCounter(EmberEUI64 nodeEui64,
uint32_t frameCounter);
EmberStatus emberGetRouteTableEntry(uint8_t index, EmberRouteTableEntry *result);
uint8_t emberStackProfile(void);
uint8_t emberSecurityLevel(void);
#define R21_COMPLIANCE_REVISION 21
#define R22_COMPLIANCE_REVISION 22
#define R23_COMPLIANCE_REVISION 23
#define PRE_R21_COMPLIANCE_REVISION 0
uint8_t sl_zigbee_get_stack_compliance_revision(void);
#ifdef DOXYGEN_SHOULD_SKIP_THIS
uint8_t emberTreeDepth(void);
#endif
uint8_t emberNeighborCount(void);
#ifdef DOXYGEN_SHOULD_SKIP_THIS
uint8_t emberRouteTableSize(void);
#else // Doxgyen ignores the following
// The '+ 0' prevents anyone from accidentally assigning to these.
#define emberTreeDepth() (sli_zigbee_tree_depth + 0)
#define emberMaxDepth() (sli_zigbee_max_depth + 0)
#define emberRouteTableSize() (sli_zigbee_route_table_size + 0)
extern uint8_t sli_zigbee_default_security_level;
extern uint8_t sli_zigbee_max_hops;
extern uint8_t sli_zigbee_route_table_size;
extern uint8_t sli_zigbee_source_route_table_size;
extern uint8_t sli_zigbee_max_depth; // The maximum tree depth.
extern uint8_t sli_zigbee_tree_depth; // The current depth.
extern uint8_t sli_zigbee_end_device_configuration;
void emberSetStackProfile(uint8_t stackProfile);
void emberSetSecurityLevel(uint8_t securityLevel);
#endif
uint8_t emberNextZigbeeSequenceNumber(void);
uint8_t emberGetMaxNwkRetries(void);
EmberStatus emberSetTxPowerMode(uint16_t txPowerMode);
uint16_t emberGetTxPowerMode(void);
EmberStatus emberSetNodeId(EmberNodeId nodeId);
uint8_t emberGetPhyInterfaceCount(void);
void emberRadioNeedsCalibratingHandler(void);
void sl_mac_calibrate_current_channel(void);
//General connectivity status APIs
void emberSetLongUpTime(bool hasLongUpTime);
void emberSetHubConnectivity(bool connected);
bool emberIsUpTimeLong(void);
bool emberIsHubConnected(void);
EmberStatus emberRadioGetSchedulerPriorities(EmberMultiprotocolPriorities *priorities);
EmberStatus emberRadioSetSchedulerPriorities(const EmberMultiprotocolPriorities *priorities);
EmberStatus emberRadioSetSchedulerSliptime(uint32_t slipTime);
EmberStatus emberRadioGetSchedulerSliptime(uint32_t *slipTime);
EmberStatus emberGetBeaconClassificationParams(EmberBeaconClassificationParams* param);
EmberStatus emberSetBeaconClassificationParams(EmberBeaconClassificationParams* param);
EmberStatus slx_zigbee_routing_set_route_record_policy(sl_zigbee_route_record_policy_type_t policy);
uint8_t slx_zigbee_routing_get_route_record_policy(void);
uint8_t emberGetTokenCount(void);
EmberStatus emberGetTokenInfo(uint8_t index,
EmberTokenInfo *tokenInfo);
EmberStatus emberGetTokenData(uint32_t token,
uint32_t index,
EmberTokenData *tokenData);
EmberStatus emberSetTokenData(uint32_t token,
uint32_t index,
EmberTokenData *tokenData);
void emberUpdateMultiMacRejoinChannelMaskForSelectionOrJoiningDevice(uint32_t *rejoinChannelMask);
void sl_zigbee_token_factory_reset(bool exclude_outgoing_fc, bool exclude_boot_counter);
#endif // SILABS_STACK_INFO_H
Modules#
Radio-specific Functions#
Enable boost power mode and/or the alternate transmit path.
Return the current configuration of boost power mode and alternate transmitter output.
Set the short node ID of the node. Notice that it can only be set if the stack is in the INITAL state.
Return the number of PHY interfaces present.
The radio calibration callback function.
Calibrate the current channel. The stack will notify the application of the need for channel calibration via the emberRadioNeedsCalibratingHandler() callback function during emberTick(). This function should only be called from within the context of the emberRadioNeedsCalibratingHandler() callback function. Calibration can take up to 150 ms. Note if this function is called when the radio is off, it will turn the radio on and leave it on.
Set the device uptime to be long or short the uptime is then advertised in the beacons.
Set the hub connectivity to be true or false the hub connectivity is then advertised in the beacons.
Get the current scheduler priorities used for Zigbee multiprotocol operations.
Set the current scheduler priorities used for Zigbee multiprotocol operations.
Set the multiprotocol slip time.
Get the multiprotocol slip time.
Get current beacon classification parameter settings.
Set current beacon classification parameters.
Set the route record policy.
Get the route record policy.
Get the total count of the tokens configured.
Get information of a token by providing the index.
Get token data by providing the token key and index for the indexed token.
Set token data by providing the token key, index for an indexed token and token data.
Update function to accept a rejoin channel mask for Multi-MAC end device types. The following function is called for a Multi-MAC end device to allow the user configuration of the device to update channel mask for the scenario where a rejoin is initiated due to end device timeout event. Based on the Multi-MAC end device configuration this call is expected to update the mask so that the rejoin interface will be selected. As per the SE 1.4 errata, the "Multi-MAC Selection" end device can change the rejoin interface where as the Multi-MAC Joining end devices shall not.
Factory reset all configured zigbee tokens.
Macros#
named constants for supported stack revisions
Variables#
The application must provide a definition for this variable.
The application must provide a definition for this variable.
If emberEndpointCount is nonzero, the application must provide descriptions for each endpoint.
Functions#
A callback invoked when the status of the stack changes. If the status parameter equals EMBER_NETWORK_UP, the emberGetNetworkParameters() function can be called to get the new network parameters. If any of the parameters are stored in nonvolatile memory by the application, the stored values should be updated.
Return the current join status.
Indicate whether the stack is currently up.
Write node data to the stack token.
Check when the next stack event is scheduled to run.
Set the power descriptor to the specified value. The power descriptor is a dynamic value, therefore this function should be called whenever the value changes.
Return the EUI64 ID of the local node.
Determine whether eui64 is the local node's EUI64 ID.
Return the 16-bit node ID of local node on the current logical network.
Return the 16-bit node ID of local node on the network it is currently tuned on.
Set the manufacturer code to the specified value. The manufacturer code is one of the fields of the node descriptor.
Set the maximum incoming transfer size to the specified value. The maximum incoming transfer size is one of the fields of the node descriptor.
Set the maximum outgoing transfer size to the specified value. The maximum outgoing transfer size is one of the fields of the node descriptor.
Set the descriptor capability field of the node.
Copy the current network parameters into the structure provided by the caller.
Copy the current radio parameters into the structure provided by the caller.
Copy the current node type into the location provided by the caller.
Set the channel to use for sending and receiving messages on the current logical network. For a list of available radio channels, see the technical specification for the RF communication module in your Developer Kit.
Set the current logical and physical channel.
Get the radio channel to which a node is set on the current logical network. The possible return values depend on the radio in use. For a list of available radio channels, see the technical specification for the RF communication module in your Developer Kit.
Set the radio output power at which a node is to operate for the current logical network. Ember radios have discrete power settings. For a list of available power settings, see the technical specification for the RF communication module in your Developer Kit. Note that using this API on a running network will directly impact the established link qualities which the neighboring nodes have with the node on which it is called. This can lead to disruption of existing routes and erratic network behavior. Note that, if the requested power level is not available on a given radio, this function will use the next higher available power level.
Get the radio output power of the current logical network at which a node is operating. Ember radios have discrete power settings. For a list of available power settings, see the technical specification for the RF communication module in your Developer Kit.
Return the RAIL level handle required to make RAIL API calls. Will return NULL if RAIL is not in use.
Return the local node's PAN ID of the current logical network.
Return the local node's PAN ID of the current radio network.
Set the configured 802.15.4 CCA mode in the radio. For a list of CCA modes, please refer to RAIL documentation regarding RAIL_IEEE802154_CcaMode_t.
Fetch a node's 8 byte Extended PAN identifier. If this is called when a device is not currently on a network (see emberNetworkState), the Extended PAN ID returned will be an invalid value.
Retrieve the endpoint number for the index'th endpoint. index must be less than the value of emberEndpointCount.
Retrieve the number of configured endpoints.
Retrieve the endpoint description for the given endpoint.
Retrieve a cluster ID from one of the cluster lists associated with the given endpoint.
Determine whether nodeId is valid.
Return the node ID that corresponds to the specified EUI64. The node ID is found by searching through all stack tables for the specified EUI64.
Return the EUI64 that corresponds to the specified node ID. The EUI64 is found by searching through all stack tables for the specified node ID.
A callback invoked to inform the application of the occurrence of an event defined by EmberCounterType, for example, transmissions and receptions at different layers of the stack.
A callback invoked to inform the application that a stack token has changed.
A callback to allow the application to manage idling the MCU.
A callback to request the application to wake up the stack task.
Copy a neighbor table entry to the structure that result points to. Neighbor table entries are stored in ascending order by node ID, with all unused entries at the end of the table. The number of active neighbors can be obtained using emberNeighborCount().
Set the routing shortcut threshold to directly use a neighbor instead of performing routing.
Get the routing shortcut threshold used to separate between directly using a neighbor vs. performing routing.
Set neighbor's initial outgoing link cost.
Get neighbor's initial outgoing link cost.
Indicate whether a rejoining neighbor's incoming FC should be reset.
Check whether resetting the incoming FC for a rejoining neighbor is enabled.
Get the last received frame counter as found in the Network Auxiliary header for the specified neighbor or child.
Set the frame counter for the specified neighbor or child.
Copy a route table entry to the structure that the result points to. Unused route table entries have a destination of 0xFFFF. The route table size can be obtained via emberRouteTableSize().
Return the stack profile of the network which the node has joined.
Return the security level of the network which the node has joined.
return the value of the stack compliance revision, as is reflected in the node descriptor
Return the depth of the node in the network.
Return the number of active entries in the neighbor table.
Return the size of the route table.
Increment and returns the Zigbee sequence number.
Get maximum number of NWK retries.
Radio-specific Functions Documentation#
emberSetTxPowerMode#
EmberStatus emberSetTxPowerMode (uint16_t txPowerMode)
Enable boost power mode and/or the alternate transmit path.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| uint16_t | N/A | txPowerMode | Specifies which transmit power mode options should be activated. This parameter should be set to one of the literal values described in stack/include/ember-types.h. Any power option not specified in the txPowerMode parameter will be deactivated. |
Boost power mode is a high-performance radio mode, which offers increased transmit power and receive sensitivity at the cost of an increase in power consumption. emberInit() calls this function using the power mode and transmitter output settings as specified in the MFG_PHY_CONFIG token (with each bit inverted so that the default token value of 0xffff corresponds to normal power mode and bi-directional RF transmitter output). The application only needs to call emberSetTxPowerMode() to use a power mode or transmitter output setting different than specified in the MFG_PHY_CONFIG token. After the initial call to emberSetTxPowerMode(), the stack will automatically maintain the specified power mode configuration across sleep/wake cycles.
Returns
EMBER_SUCCESS if successful; an error code otherwise.
emberGetTxPowerMode#
uint16_t emberGetTxPowerMode (void )
Return the current configuration of boost power mode and alternate transmitter output.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| void | N/A |
Returns
The current TX power mode.
emberSetNodeId#
EmberStatus emberSetNodeId (EmberNodeId nodeId)
Set the short node ID of the node. Notice that it can only be set if the stack is in the INITAL state.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| EmberNodeId | N/A | nodeId | Specifies the short ID to be assigned to the node. |
Returns
EMBER_SUCCESS if successful; an error code otherwise.
emberGetPhyInterfaceCount#
uint8_t emberGetPhyInterfaceCount (void )
Return the number of PHY interfaces present.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| void | N/A |
Returns
The number of PHY interface(s).
emberRadioNeedsCalibratingHandler#
void emberRadioNeedsCalibratingHandler (void )
The radio calibration callback function.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| void | N/A |
The Voltage Controlled Oscillator (VCO) can drift with temperature changes. During every call to emberTick(), the stack will check to see if the VCO has drifted. If the VCO has drifted, the stack will call emberRadioNeedsCalibratingHandler() to inform the application that it should perform calibration of the current channel as soon as possible. Calibration can take up to 150 ms. The default callback function implementation provided here performs the calibration immediately. The application can define its own callback by defining ::EMBER_APPLICATION_HAS_CUSTOM_RADIO_CALIBRATION_CALLBACK in its CONFIGURATION_HEADER. It can then failsafe any critical processes or peripherals before calling ::emberCalibrateCurrentChannel(). The application must call ::emberCalibrateCurrentChannel() in response to this callback to maintain expected radio performance.
sl_mac_calibrate_current_channel#
void sl_mac_calibrate_current_channel (void )
Calibrate the current channel. The stack will notify the application of the need for channel calibration via the emberRadioNeedsCalibratingHandler() callback function during emberTick(). This function should only be called from within the context of the emberRadioNeedsCalibratingHandler() callback function. Calibration can take up to 150 ms. Note if this function is called when the radio is off, it will turn the radio on and leave it on.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| void | N/A |
emberSetLongUpTime#
void emberSetLongUpTime (bool hasLongUpTime)
Set the device uptime to be long or short the uptime is then advertised in the beacons.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| bool | N/A | hasLongUpTime |
emberSetHubConnectivity#
void emberSetHubConnectivity (bool connected)
Set the hub connectivity to be true or false the hub connectivity is then advertised in the beacons.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| bool | N/A | connected |
emberIsUpTimeLong#
bool emberIsUpTimeLong (void )
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| void | N/A |
Returns
True if device uptime is long, false otherwise
emberIsHubConnected#
bool emberIsHubConnected (void )
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| void | N/A |
Returns
True if there is hub connectivity, false otherwise
emberRadioGetSchedulerPriorities#
EmberStatus emberRadioGetSchedulerPriorities (EmberMultiprotocolPriorities * priorities)
Get the current scheduler priorities used for Zigbee multiprotocol operations.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| EmberMultiprotocolPriorities * | N/A | priorities | A pointer to a structure to store the current priorities in. This must not be NULL. |
Returns
EMBER_SUCCESS if called in a multiprotocol app and EMBER_INVALID_CALL otherwise.
For more details on what these priorities are and how to use them see UG305, the Dynamic Multiprotocol User Guide.
emberRadioSetSchedulerPriorities#
EmberStatus emberRadioSetSchedulerPriorities (const EmberMultiprotocolPriorities * priorities)
Set the current scheduler priorities used for Zigbee multiprotocol operations.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| const EmberMultiprotocolPriorities * | N/A | priorities | A pointer to a structure of the new priorities to use. This must not be NULL. |
Returns
EMBER_SUCCESS if called in a multiprotocol app and EMBER_INVALID_CALL otherwise.
For more details on what these priorities are and how to use them see UG305, the Dynamic Multiprotocol User Guide.
emberRadioSetSchedulerSliptime#
EmberStatus emberRadioSetSchedulerSliptime (uint32_t slipTime)
Set the multiprotocol slip time.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| uint32_t | N/A | slipTime | The value to set the slip time to for each transmit. |
Returns
EMBER_SUCCESS if called in a multiprotocol app and EMBER_INVALID_CALL otherwise.
Use this to update the slip time passed to the radio scheduler for each transmit from the PHY layer. The smaller this is set the lower the potential multi-protocol induced latency is, but it makes packets more likely to fail to be transmitted. For more details on slip time see UG305.
emberRadioGetSchedulerSliptime#
EmberStatus emberRadioGetSchedulerSliptime (uint32_t * slipTime)
Get the multiprotocol slip time.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| uint32_t * | N/A | slipTime | A pointer to the place to store the current slip time |
Returns
EMBER_SUCCESS if called in a multiprotocol app and EMBER_INVALID_CALL otherwise.
Use this to get the current value of the multiprotocol slip time used for each transmit at the PHY layer. For more details on slip time see UG305.
emberGetBeaconClassificationParams#
EmberStatus emberGetBeaconClassificationParams (EmberBeaconClassificationParams * param)
Get current beacon classification parameter settings.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| EmberBeaconClassificationParams * | N/A | param |
emberSetBeaconClassificationParams#
EmberStatus emberSetBeaconClassificationParams (EmberBeaconClassificationParams * param)
Set current beacon classification parameters.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| EmberBeaconClassificationParams * | N/A | param |
slx_zigbee_routing_set_route_record_policy#
EmberStatus slx_zigbee_routing_set_route_record_policy (sl_zigbee_route_record_policy_type_t policy)
Set the route record policy.
| Type | Direction | Argument Name | Description |
|---|---|---|---|
| sl_zigbee_route_record_policy_type_t | N/A | policy | A pointer to the place to store the current slip time |
Returns
EMBER_SUCCESS if route record policy was successfully set EMBER_BAD_ARGUMENT otherwise.
Use this to set the policy for sending a route record message to a concentrator Note that policies other than the default ROUTE_RECORD_POLICY_ACK_BY_SOURCE_ROUTED_MESSAGE may result in behavior not compliant with the Zigbee specification
slx_zigbee_routing_get_route_record_policy#
uint8_t slx_zigbee_routing_get_route_record_policy (void )
Get the route record policy.