Network Formation#
EmberZNet API for finding, forming, joining, and leaving Zigbee networks.
See network-formation.h for source code.
Typedefs#
Function callback that is used to handle the reception of a beacon.
Function callback that is used to handle the conclusion of an active or energy scan.
Functions#
Initializes the radio and the EmberZNet stack.
A periodic tick routine that should be called:
Resumes network operation after a reboot.
Forms a new network by becoming the coordinator.
Tells the stack to allow other nodes to join the network with this node as their parent. Joining is initially disabled by default. This function may only be called after the node is part of a network and the stack is up.
Causes the stack to associate with the network using the specified network parameters. It can take several seconds for the stack to associate with the local network. Do not send messages until a call to the emberStackStatusHandler() callback informs you that the stack is up.
Causes the stack to leave the current network. This generates a call to the emberStackStatusHandler() callback to indicate that the network is down. The radio will not be used until after a later call to emberFormNetwork() or emberJoinNetwork().
Sends a Zigbee NWK leave command to the specified destination.
The application may call this function when contact with the network has been lost. The most common use case is when an end device can no longer communicate with its parent and wishes to find a new one. Another case is when a device has missed a Network Key update and no longer has the current Network Key.
This call is the same emberFindAndRejoinNetworkWithReason(). However, the reason is assumed to be ::EMBER_REJOIN_REASON_APP_EVENT_1.
This call attempts to rejoin the network with a different device type.
Returns the enumeration for why a previous rejoin.
A convenience function which calls emberFindAndRejoinNetwork() with a channel mask value for scanning only the current channel. Included for back-compatibility.
This function will start a scan. EMBER_SUCCESS signals that the scan successfully started. Note that although a scan can be initiated while the node is currently joined to a network, the node will generally be unable to communicate with its PAN during the scan period. Take care when performing scans of any significant duration while presently joined to an existing PAN.
Kicks off a procedure to scan for beacons, filter results, and provide a response zcl frame including the best eligible parents. This procedure uses the emberStartScan() API.
Kicks off a procedure to find an unused panId on a low-activity channel that is included in the passed-in channel mask. This procedure uses the emberStartScan() API.
Terminates a scan in progress.
Checks if radio_off scan mode is activated and radio has shut down as a result.
Indicates the status of the current scan. When the scan has completed, the stack will call this function with status set to EMBER_SUCCESS. Prior to the scan completing, the stack may call this function with other status values. Non-EMBER_SUCCESS status values indicate that the scan failed to start successfully on the channel indicated by the channel parameter. The current scan is ongoing until the stack calls this function with status set to EMBER_SUCCESS.
Reports the maximum RSSI value measured on the channel.
Reports that a network was found and gives the network parameters used for deciding which network to join.
This function returns an unused panID and channel pair found via the find unused panId scan procedure.
Indicates whether the stack is in the process of performing a rejoin.
Indicates the reason why the device left the network (if any). This also will return the device that sent the leave message, if the leave was due to an over-the-air message.
Indicates the state of the permit joining in the MAC.
Sets the Network Update ID to the desired value. The Network Update ID value cannot be manually changed after a network is joined, so this function must be called before calling emberFormNetwork.
Sets the duration of a beacon jitter, in the units used by the 15.4 scan parameter (((1 << duration) + 1) * 15 ms), when responding to a beacon request.
This function sets the policy decision for Trust Center (insecure) rejoins for devices using the well-known link key. If rejoining using the well-known key is allowed, it is disabled again after emAllowTcRejoinsUsingWellKnownKeyTimeoutSec seconds.
This function gets the policy decision for Trust Center (insecure) rejoins for devices using the well-known link key.
Configures the minimum RSSI for receiving packets.
Enables/diables the parent classification algorithm on the stack side. Parent classification considers whether a received beacon indicates trust center connectivity and long uptime on the network. This is left here for backward compatibility. We can achieve the same with emberSetBeaconClassificationParams.
Gets the enable state the parent classification algorithm. This is left here for backward compatibility. We can achieve the same with emberGetBeaconClassificationParams.
Sets the short PAN ID the device will accept in a NLME Network Update command.
Macros#
Causes the stack to associate with the network using the specified network parameters in the beacon parameter. It can take several seconds for the stack to associate with the local network. Do not send messages until a call to the emberStackStatusHandler() callback informs you that the stack is up. This function, unlike emberJoinNetwork(), does not issue an active scan before joining. Instead, this function will cause the local node to issue a MAC Association Request directly to the specified target node. It is assumed that the beacon parameter is an artifact after issuing an active scan (see ::emberGetBestBeacon() and emberGetNextBeacon() for more).
Typedef Documentation#
EmberNetworkFoundCallback#
typedef bool(* EmberNetworkFoundCallback) (EmberZigbeeNetwork *network, uint8_t rssi, int8_t lqi, uint16_t senderNodeId, uint8_t parentPriority) )(EmberZigbeeNetwork *network, uint8_t rssi, int8_t lqi, uint16_t senderNodeId, uint8_t parentPriority)
Function callback that is used to handle the reception of a beacon.
NOTE: SoC only
322
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
EmberScanCompleteCallback#
typedef bool(* EmberScanCompleteCallback) (uint8_t channel, EmberStatus status) )(uint8_t channel, EmberStatus status)
Function callback that is used to handle the conclusion of an active or energy scan.
NOTE: SoC only
329
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
Function Documentation#
emberInit#
EmberStatus emberInit (void )
Initializes the radio and the EmberZNet stack.
N/A |
Device configuration functions must be called before emberInit() is called.
Note
The application must check the return value of this function. If the initialization fails, normal messaging functions will not be available. Some failure modes are not fatal, but the application must follow certain procedures to permit recovery. Ignoring the return code will result in unpredictable radio and API behavior. (In particular, problems with association will occur.)
Returns
An EmberStatus value indicating successful initialization or the reason for failure.
45
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberTick#
void emberTick (void )
A periodic tick routine that should be called:
N/A |
in the application's main event loop,
as soon as possible after any radio interrupts, and
after emberInit().
52
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberNetworkInit#
EmberStatus emberNetworkInit (EmberNetworkInitStruct * networkInitStruct)
Resumes network operation after a reboot.
N/A | networkInitStruct | Defines whether an orphan scan/rejoin request/or neither is performed during network initialization. |
It is required that this be called on boot prior to any network operations. It will initialize the networking system and attempt to resume the previous network identity and configuration. If the node was not previously joined, this routine should still be called.
If the node was previously joined to a network, it will retain its original type (e.g., coordinator, router, end device, and so on.)
EMBER_NOT_JOINED is returned if the node is not part of a network.
. This function has encapsulated the old behavior of emberNetworkInitExtended().
Returns
An EmberStatus value that indicates one of the following:
successful initialization,
EMBER_NOT_JOINED if the node is not part of a network, or
the reason for failure.
77
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberFormNetwork#
EmberStatus emberFormNetwork (EmberNetworkParameters * parameters)
Forms a new network by becoming the coordinator.
N/A | parameters | Specification of the new network. |
Note
If using security, the application must call emberSetInitialSecurityState() prior to joining the network. This also applies when a device leaves a network and wants to form another one.
Returns
An EmberStatus value that indicates either the successful formation of the new network, or the reason that the network formation failed.
90
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberPermitJoining#
EmberStatus emberPermitJoining (uint8_t duration)
Tells the stack to allow other nodes to join the network with this node as their parent. Joining is initially disabled by default. This function may only be called after the node is part of a network and the stack is up.
N/A | duration | A value of 0x00 disables joining. A value of 0xFF enables joining. Any other value enables joining for that number of seconds. |
101
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberJoinNetwork#
EmberStatus emberJoinNetwork (EmberNodeType nodeType, EmberNetworkParameters * parameters)
Causes the stack to associate with the network using the specified network parameters. It can take several seconds for the stack to associate with the local network. Do not send messages until a call to the emberStackStatusHandler() callback informs you that the stack is up.
N/A | nodeType | Specification of the role that this node will have in the network. This role must not be EMBER_COORDINATOR. To be a coordinator, call emberFormNetwork(). |
N/A | parameters | Specification of the network with which the node should associate. |
Note
If using security, the application must call emberSetInitialSecurityState() prior to joining the network. This also applies when a device leaves a network and wants to join another one.
Returns
An EmberStatus value that indicates either:
that the association process began successfully, or
the reason for failure.
123
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberLeaveNetwork#
EmberStatus emberLeaveNetwork (void )
Causes the stack to leave the current network. This generates a call to the emberStackStatusHandler() callback to indicate that the network is down. The radio will not be used until after a later call to emberFormNetwork() or emberJoinNetwork().
N/A |
Returns
An EmberStatus value indicating success or reason for failure. A status of EMBER_INVALID_CALL indicates that the node is either not joined to a network or is already in the process of leaving.
175
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSendZigbeeLeave#
EmberStatus emberSendZigbeeLeave (EmberNodeId destination, EmberLeaveRequestFlags flags)
Sends a Zigbee NWK leave command to the specified destination.
N/A | destination | is the node ID of the device that is being told to leave. |
N/A | flags | is a bitmask indicating additional considerations for the leave request. See the EmberLeaveRequestFlags enumeration for more information. Multiple bits may be set. |
Returns
An EmberStatus value indicating success or reason for failure. A status of EMBER_INVALID_CALL indicates that the node not currently joined to the network, or the destination is the local node. To tell the local device to leave, use the emberLeaveNetwork() API.
191
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberFindAndRejoinNetworkWithReason#
EmberStatus emberFindAndRejoinNetworkWithReason (bool haveCurrentNetworkKey, uint32_t channelMask, EmberRejoinReason reason)
The application may call this function when contact with the network has been lost. The most common use case is when an end device can no longer communicate with its parent and wishes to find a new one. Another case is when a device has missed a Network Key update and no longer has the current Network Key.
N/A | haveCurrentNetworkKey | This parameter determines whether the request to rejoin the Network is sent encrypted (true) or unencrypted (false). The application should first try to use encryption. If that fails, the application should call this function again and use no encryption. If the unencrypted rejoin is successful then device will be in the joined but unauthenticated state. The Trust Center will be notified of the rejoin and send an updated Network encrypted using the device's Link Key. Sending the rejoin unencrypted is only supported on networks using Standard Security with link keys (i.e., ZigBee 2006 networks do not support it). |
N/A | channelMask | A mask indicating the channels to be scanned. See emberStartScan() for format details. |
N/A | reason | An enumeration indicating why the rejoin occurred. The stack will set the reason based on the EmberRejoinReason. An application should use one of the APP_EVENT rejoin reasons. The stack will never use these. Only if the function return code is EMBER_SUCCESS will the rejoin reason be set. |
Note that a call to emberPollForData() on an end device that has lost contact with its parent will automatically call ::emberRejoinNetwork(true).
The stack will call emberStackStatusHandler() to indicate that the network is down, then try to re-establish contact with the network by performing an active scan, choosing a network with matching extended pan ID, and sending a Zigbee network rejoin request. A second call to the emberStackStatusHandler() callback indicates either the success or the failure of the attempt. The process takes approximately 150 milliseconds per channel to complete.
This call replaces the ::emberMobileNodeHasMoved() API from EmberZNet 2.x, which used MAC association and consequently took half a second longer to complete.
Returns
An EmberStatus value indicating success or reason for failure.
236
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberFindAndRejoinNetwork#
EmberStatus emberFindAndRejoinNetwork (bool haveCurrentNetworkKey, uint32_t channelMask)
This call is the same emberFindAndRejoinNetworkWithReason(). However, the reason is assumed to be ::EMBER_REJOIN_REASON_APP_EVENT_1.
N/A | haveCurrentNetworkKey | |
N/A | channelMask |
243
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberFindAndRejoinNetworkWithNodeType#
EmberStatus emberFindAndRejoinNetworkWithNodeType (bool haveCurrentNetworkKey, uint32_t channelMask, EmberNodeType nodeType)
This call attempts to rejoin the network with a different device type.
N/A | haveCurrentNetworkKey | This parameter determines whether the request to rejoin the Network is sent encrypted (true) or unencrypted (false). The application should first try to use encryption. If that fails, the application should call this function again and use no encryption. If the unencrypted rejoin is successful then device will be in the joined but unauthenticated state. The Trust Center will be notified of the rejoin and send an updated Network encrypted using the device's Link Key. Sending the rejoin unencrypted is only supported on networks using Standard Security with link keys (i.e., ZigBee 2006 networks do not support it). |
N/A | channelMask | A mask indicating the channels to be scanned. See emberStartScan() for format details. |
N/A | nodeType | An enumeration indicating the device type to rejoin as. The stack only accepts EMBER_END_DEVICE and EMBER_SLEEPY_END_DEVICE. |
263
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetLastRejoinReason#
EmberRejoinReason emberGetLastRejoinReason (void )
Returns the enumeration for why a previous rejoin.
N/A |
269
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberRejoinNetwork#
EmberStatus emberRejoinNetwork (bool haveCurrentNetworkKey)
A convenience function which calls emberFindAndRejoinNetwork() with a channel mask value for scanning only the current channel. Included for back-compatibility.
N/A | haveCurrentNetworkKey |
276
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberStartScan#
EmberStatus emberStartScan (EmberNetworkScanType scanType, uint32_t channelMask, uint8_t duration)
This function will start a scan. EMBER_SUCCESS signals that the scan successfully started. Note that although a scan can be initiated while the node is currently joined to a network, the node will generally be unable to communicate with its PAN during the scan period. Take care when performing scans of any significant duration while presently joined to an existing PAN.
N/A | scanType | Indicates the type of scan to be performed. Possible values: EMBER_ENERGY_SCAN, EMBER_ACTIVE_SCAN. |
N/A | channelMask | Bits set as 1 indicate that this particular channel should be scanned. Bits set to 0 indicate that this particular channel should not be scanned. For example, a channelMask value of 0x00000001 indicates that only channel 0 should be scanned. Valid channels range from 11 to 26 inclusive. This translates to a channel mask value of 0x07 FF F8 00. As a convenience, a channelMask of 0 is reinterpreted as the mask for the current channel. |
N/A | duration | Sets the exponent of the number of scan periods, where a scan period is 960 symbols, and a symbol is 16 microseconds. The scan will occur for ((2^duration) + 1) scan periods. The value of duration must be less than 15. The time corresponding to the first few values is as follows: 0 = 31 msec, 1 = 46 msec, 2 = 77 msec, 3 = 138 msec, 4 = 261 msec, 5 = 507 msec, 6 = 998 msec. |
Possible error responses and their meanings:
EMBER_MAC_SCANNING, already scanning.
EMBER_MAC_BAD_SCAN_DURATION, a duration value that is not 0..14 inclusive is set.
EMBER_MAC_INCORRECT_SCAN_TYPE, an undefined scanning type is requested;
EMBER_MAC_INVALID_CHANNEL_MASK, the channel mask did not specify any valid channels on the current platform.
316
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSurveyBeacons#
EmberStatus emberSurveyBeacons (bool useStandardBeacons, EmberNetworkFoundCallback networkFoundCallback, EmberScanCompleteCallback scanCompleteCallback)
Kicks off a procedure to scan for beacons, filter results, and provide a response zcl frame including the best eligible parents. This procedure uses the emberStartScan() API.
N/A | useStandardBeacons | If true, the surveyBeacon procedure will use standard beacons. If false, the surveyBeacon procedure will use enhanced beacons. |
N/A | networkFoundCallback | The function pointer that is called after the reception of a beacon. |
N/A | scanCompleteCallback | The function pointer that is called after the beacon collection phase of the surveyBeacon procedure is over. |
NOTE: SoC only
349
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberFindUnusedPanId#
EmberStatus emberFindUnusedPanId (uint32_t channelMask, uint8_t duration)
Kicks off a procedure to find an unused panId on a low-activity channel that is included in the passed-in channel mask. This procedure uses the emberStartScan() API.
N/A | channelMask | The set of channels that will be scanned to find an available panId. |
N/A | duration | The length of time that will be spent scanning for an available panId. |
364
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberStopScan#
EmberStatus emberStopScan (void )
Terminates a scan in progress.
N/A |
Returns
Returns EMBER_SUCCESS if successful.
370
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberIsRadioOffScanActivated#
bool emberIsRadioOffScanActivated (void )
Checks if radio_off scan mode is activated and radio has shut down as a result.
N/A |
Returns
Returns ::true if radio has shut down successfully. There is no EZSP/NCP implementation for this.
376
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberScanCompleteHandler#
void emberScanCompleteHandler (uint8_t channel, EmberStatus status)
Indicates the status of the current scan. When the scan has completed, the stack will call this function with status set to EMBER_SUCCESS. Prior to the scan completing, the stack may call this function with other status values. Non-EMBER_SUCCESS status values indicate that the scan failed to start successfully on the channel indicated by the channel parameter. The current scan is ongoing until the stack calls this function with status set to EMBER_SUCCESS.
N/A | channel | The channel on which the current error occurred. Undefined for the case of EMBER_SUCCESS. |
N/A | status | The error condition that occurred on the current channel. Value will be EMBER_SUCCESS when the scan has completed. |
392
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberEnergyScanResultHandler#
void emberEnergyScanResultHandler (uint8_t channel, int8_t maxRssiValue)
Reports the maximum RSSI value measured on the channel.
N/A | channel | The 802.15.4 channel number on which the RSSI value. was measured. |
N/A | maxRssiValue | The maximum RSSI value measured (in units of dBm). |
402
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberNetworkFoundHandler#
void emberNetworkFoundHandler (EmberZigbeeNetwork * networkFound)
Reports that a network was found and gives the network parameters used for deciding which network to join.
N/A | networkFound | A pointer to a EmberZigbeeNetwork structure that contains the discovered network and its associated parameters. |
411
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberUnusedPanIdFoundHandler#
void emberUnusedPanIdFoundHandler (EmberPanId panId, uint8_t channel)
This function returns an unused panID and channel pair found via the find unused panId scan procedure.
N/A | panId | The unused panID. |
N/A | channel | The channel which the unused panId was found on. |
420
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberStackIsPerformingRejoin#
bool emberStackIsPerformingRejoin (void )
Indicates whether the stack is in the process of performing a rejoin.
N/A |
Returns
Returns true if the device is in the process of performing a rejoin. Returns false otherwise.
428
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetLastLeaveReason#
EmberLeaveReason emberGetLastLeaveReason (EmberNodeId * returnNodeIdThatSentLeave)
Indicates the reason why the device left the network (if any). This also will return the device that sent the leave message, if the leave was due to an over-the-air message.
N/A | returnNodeIdThatSentLeave |
If returnNodeIdThatSentLeave is a non-NULL pointer, the node ID of the device that sent the leave message will be written to the value indicated by the pointer. If the leave was not due to an over-the-air message (but an internal API call instead), EMBER_UNKNOWN_NODE_ID is returned.
Returns
Returns EmberLeaveReason enumeration, or EMBER_LEAVE_REASON_NONE if the device has not left the network.
443
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetPermitJoining#
bool emberGetPermitJoining (void )
Indicates the state of the permit joining in the MAC.
N/A |
447
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetNwkUpdateId#
EmberStatus emberSetNwkUpdateId (uint8_t nwkUpdateId)
Sets the Network Update ID to the desired value. The Network Update ID value cannot be manually changed after a network is joined, so this function must be called before calling emberFormNetwork.
N/A | nwkUpdateId |
Note
This Network Update ID should not normally be changed, as it is used by the stack to track changes in the network.
Returns
EMBER_SUCCESS if called when not on network, else EMBER_INVALID_CALL.
458
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetBeaconJitterDuration#
EmberStatus emberSetBeaconJitterDuration (uint8_t beaconJitterDuration)
Sets the duration of a beacon jitter, in the units used by the 15.4 scan parameter (((1 << duration) + 1) * 15 ms), when responding to a beacon request.
N/A | beaconJitterDuration |
Note
Since the recommended scan duration of a joining device is 3 for 2.4 GHz devices, any value passed in to this function greater than 3 will be rejected.
Returns
EMBER_BAD_ARGUMENT if the argument is invalid, else EMBER_SUCCESS.
470
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetTcRejoinsUsingWellKnownKeyAllowed#
void emberSetTcRejoinsUsingWellKnownKeyAllowed (bool allow)
This function sets the policy decision for Trust Center (insecure) rejoins for devices using the well-known link key. If rejoining using the well-known key is allowed, it is disabled again after emAllowTcRejoinsUsingWellKnownKeyTimeoutSec seconds.
N/A | allow |
478
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberTcRejoinsUsingWellKnownKeyAllowed#
bool emberTcRejoinsUsingWellKnownKeyAllowed (void )
This function gets the policy decision for Trust Center (insecure) rejoins for devices using the well-known link key.
N/A |
484
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetupDelayedJoin#
EmberStatus emberSetupDelayedJoin (uint8_t networkKeyTimeoutS)
N/A | networkKeyTimeoutS |
492
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetNetworkKeyTimeout#
uint8_t emberGetNetworkKeyTimeout (void )
N/A |
499
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberRescheduleLinkStatusMsg#
void emberRescheduleLinkStatusMsg (void )
N/A |
505
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetMinRSSI#
void emberSetMinRSSI (int8_t minRSSI)
Configures the minimum RSSI for receiving packets.
N/A | minRSSI |
The minimum RSSI is used to classify good/bad parent signal strengths. Any packet in the range of minimum RSSI + 30 db is considered to be "bad". By default this value is set to -100. Currently no EZSP support. This is left here for backward compatibility. We can achieve the same EZSP applicable setting with emberSetBeaconClassificationParams
515
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetParentClassificationEnabled#
void emberSetParentClassificationEnabled (bool enabled)
Enables/diables the parent classification algorithm on the stack side. Parent classification considers whether a received beacon indicates trust center connectivity and long uptime on the network. This is left here for backward compatibility. We can achieve the same with emberSetBeaconClassificationParams.
N/A | enabled |
524
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetParentClassificationEnabled#
bool emberGetParentClassificationEnabled (void )
Gets the enable state the parent classification algorithm. This is left here for backward compatibility. We can achieve the same with emberGetBeaconClassificationParams.
N/A |
531
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetPendingNetworkUpdatePanId#
void emberSetPendingNetworkUpdatePanId (uint16_t panId)
Sets the short PAN ID the device will accept in a NLME Network Update command.
N/A | panId | A pending network update short PAN ID. |
If a NLME Network Update command is received by the device specifying a short PAN ID that does not match with the given PAN ID, then the NLME Network Update message will be ignored by the device. A value of 0xFFFF indicates that any short PAN ID received in a NLME Network Update command will be accepted which is also the default value set by the stack.
543
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetNeighborLastLqiRssi#
EmberStatus emberGetNeighborLastLqiRssi (EmberNodeId nodeId, uint8_t * lqi, int8_t * rssi)
N/A | nodeId | |
N/A | lqi | |
N/A | rssi |
553
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSendPanIdUpdate#
bool emberSendPanIdUpdate (EmberPanId newPan)
N/A | newPan |
565
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
Macro Definition Documentation#
emberJoinNetworkDirectly#
#define emberJoinNetworkDirectlyValue:
(..., beacon, radioTxPower, clearBeaconsAfterNetworkUp)
Causes the stack to associate with the network using the specified network parameters in the beacon parameter. It can take several seconds for the stack to associate with the local network. Do not send messages until a call to the emberStackStatusHandler() callback informs you that the stack is up. This function, unlike emberJoinNetwork(), does not issue an active scan before joining. Instead, this function will cause the local node to issue a MAC Association Request directly to the specified target node. It is assumed that the beacon parameter is an artifact after issuing an active scan (see ::emberGetBestBeacon() and emberGetNextBeacon() for more).
Note
If using security, the application must call emberSetInitialSecurityState() prior to joining the network. This also applies when a device leaves a network and wants to join another one.
Returns
An EmberStatus value that indicates either:
that the association process began successfully, or
the reason for failure.
163
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberClearStoredBeacons#
#define emberClearStoredBeacons
623
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberSetNumBeaconsToStore#
#define emberSetNumBeaconsToStoreValue:
(numBeacons)
624
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetFirstBeacon#
#define emberGetFirstBeaconValue:
(beaconIterator)
625
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetNextBeacon#
#define emberGetNextBeaconValue:
(beacon)
626
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h
emberGetNumStoredBeacons#
#define emberGetNumStoredBeaconsValue:
(...)
627
of file /Users/vihuszar/Git/EmbeddedSoftware/super/protocol/zigbee/stack/include/network-formation.h