Stack Callbacks#
Functions#
A callback invoked when receiving a message.
A callback that allows marking application buffers.
incomingMfgTestMessageHandler
A callback invoked when the status of the stack changes. If the status parameter equals EMBER_NETWORK_UP, then the getNetworkParameters command can be called to obtain the new network parameters. If any of the parameters are being stored in nonvolatile memory by the Host, the stored values should be updated.
Reports the result of an energy scan for a single channel. The scan is not complete until the scanCompleteHandler callback is called.
Reports that a network was found as a result of a prior call to startScan. Gives the network parameters useful for deciding which network to join.
Returns the status of the current scan of type EMBER_ENERGY_SCAN or EMBER_ACTIVE_SCAN. EMBER_SUCCESS signals that the scan has completed. Other error conditions signify a failure to scan on the channel specified.
This function returns an unused panID and channel pair found via the find unused panId scan procedure.
Indicates that a child has joined or left.
Callback fires when the duty cycle state has changed.
The NCP used the external binding modification policy to decide how to handle a remote set binding request. The Host cannot change the current decision, but it can change the policy for future decisions using the setPolicy command.
The NCP used the external binding modification policy to decide how to handle a remote delete binding request. The Host cannot change the current decision, but it can change the policy for future decisions using the setPolicy command.
Indicates the result of a data poll to the parent of the local node.
Indicates that the local node received a data poll from a child.
debugHandler
A callback indicating that a many-to-one route to the concentrator with the given short and long id is available for use.
A callback invoked when a route error message is received. The error indicates that a problem routing to or from the target node was encountered.
A callback invoked when a network status/route error message is received. The error indicates that there was a problem sending/receiving messages from the target node.
Reports the arrival of a route record command frame.
A callback invoked by the EmberZNet stack when an id conflict is discovered, that is, two different nodes in the network were found to be using the same short id. The stack automatically removes the conflicting short id from its internal tables (address, binding, route, neighbor, and child tables). The application should discontinue any other use of the id.
A callback invoked by the EmberZNet stack when a MAC passthrough message is received.
A callback invoked to inform the application that a stack token has changed.
A callback from the timer.
This call is fired when a counter exceeds its threshold.
A callback invoked by the EmberZNet stack when the MAC has finished transmitting a raw message.
A callback to inform the application that the Network Key has been updated and the node has been switched over to use the new key. The actual key being used is not passed up, but the sequence number is.
This is a callback that indicates the success or failure of an attempt to establish a key with a partner device.
A callback by the Crypto Engine indicating that a new ephemeral public/private key pair has been generated. The public/private key pair is stored on the NCP, but only the associated public key is returned to the host. The node's associated certificate is also returned.
A callback to indicate that the NCP has finished calculating the Secure Message Authentication Codes (SMAC) for both the initiator and responder. The associated link key is kept in temporary storage until the host tells the NCP to store or discard the key via emberClearTemporaryDataMaybeStoreLinkKey().
The handler that returns the results of the signing operation. On success, the signature will be appended to the original message (including the signature type indicator that replaced the startIndex field for the signing) and both are returned via this callback.
This callback is executed by the stack when the DSA verification has completed and has a result. If the result is EMBER_SUCCESS, the signature is valid. If the result is EMBER_SIGNATURE_VERIFY_FAILURE then the signature is invalid. If the result is anything else then the signature verify operation failed and the validity is unknown.
A callback invoked by the EmberZNet stack when a bootload message is received.
A callback invoked by the EmberZNet stack when the MAC has finished transmitting a bootload message.
This call is fired when a ZLL network scan finds a ZLL network.
This call is fired when a ZLL network scan is complete.
This call is fired when network and group addresses are assigned to a remote mode in a network start or network join request.
This call is fired when the device is a target of a touch link.
A callback invoked by the EmberZNet stack when a raw MAC message that has matched one of the application's configured MAC filters.
A callback to the GP endpoint to indicate the result of the GPDF transmission.
This handler is called by the stack to report the number of conflict reports exceeds EMBER_PAN_ID_CONFLICT_REPORT_THRESHOLD within a period of 1 minute )
Inform the application that an orphan notification has been received. This is generally not useful for applications. It could be useful in testing and is included for this purpose.
This handler is called when the value of a counter has changed.
This handler is called for messages that need to be matched against mac passthrough filter.
A callback by the Crypto Engine indicating that a new ephemeral public/private key pair has been generated. The public/private key pair is stored on the NCP, but only the associated public key is returned to the host. The node's associated certificate is also returned.
A callback to indicate that the NCP has finished calculating the Secure Message Authentication Codes (SMAC) for both the initiator and responder. The associated link key is kept in temporary storage until the host tells the NCP to store or discard the key via emberClearTemporaryDataMaybeStoreLinkKey().
A callback invoked by the ZigBee GP stack when a GPDF is received.
Rtos Stack Wakeup Isr Handler.
RadioNeedsCalibratingHandler.
scanErrorHandler
Function Documentation#
emberAfIncomingMessageCallback#
void emberAfIncomingMessageCallback (EmberIncomingMessageType type, EmberApsFrame * apsFrame, EmberMessageBuffer message)
A callback invoked when receiving a message.
N/A | type | Incoming message type |
N/A | apsFrame | The aps Frame |
N/A | message | message |
33
of file app/framework/common/zigbee_app_framework_callback.h
emberAfMarkBuffersCallback#
void emberAfMarkBuffersCallback (void )
A callback that allows marking application buffers.
N/A |
44
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIncomingMfgTestMessageCallback#
void emberAfIncomingMfgTestMessageCallback (uint8_t messageType, uint8_t dataLength, uint8_t * data)
incomingMfgTestMessageHandler
N/A | messageType | |
N/A | dataLength | |
N/A | data |
49
of file app/framework/common/zigbee_app_framework_callback.h
emberAfStackStatusCallback#
void emberAfStackStatusCallback (EmberStatus status)
A callback invoked when the status of the stack changes. If the status parameter equals EMBER_NETWORK_UP, then the getNetworkParameters command can be called to obtain the new network parameters. If any of the parameters are being stored in nonvolatile memory by the Host, the stored values should be updated.
N/A | status | Stack status |
63
of file app/framework/common/zigbee_app_framework_callback.h
emberAfEnergyScanResultCallback#
void emberAfEnergyScanResultCallback (uint8_t channel, int8_t maxRssiValue)
Reports the result of an energy scan for a single channel. The scan is not complete until the scanCompleteHandler callback is called.
N/A | channel | The 802.15.4 channel number that was scanned. |
N/A | maxRssiValue | The maximum RSSI value found on the channel. |
73
of file app/framework/common/zigbee_app_framework_callback.h
emberAfNetworkFoundCallback#
void emberAfNetworkFoundCallback (EmberZigbeeNetwork * networkFound, uint8_t lqi, int8_t rssi)
Reports that a network was found as a result of a prior call to startScan. Gives the network parameters useful for deciding which network to join.
N/A | networkFound | The parameters associated with the network found. |
N/A | lqi | The link quality indication of the network found. |
N/A | rssi | The received signal strength indication of the network found. |
86
of file app/framework/common/zigbee_app_framework_callback.h
emberAfScanCompleteCallback#
void emberAfScanCompleteCallback (uint8_t channel, EmberStatus status)
Returns the status of the current scan of type EMBER_ENERGY_SCAN or EMBER_ACTIVE_SCAN. EMBER_SUCCESS signals that the scan has completed. Other error conditions signify a failure to scan on the channel specified.
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. |
103
of file app/framework/common/zigbee_app_framework_callback.h
emberAfUnusedPanIdFoundCallback#
void emberAfUnusedPanIdFoundCallback (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 which has been found. |
N/A | channel | The channel that the unused panID was found on. |
117
of file app/framework/common/zigbee_app_framework_callback.h
emberAfChildJoinCallback#
void emberAfChildJoinCallback (uint8_t index, bool joining)
Indicates that a child has joined or left.
N/A | index | The index of the child of interest. |
N/A | joining | True if the child is joining. False the child is leaving. |
128
of file app/framework/common/zigbee_app_framework_callback.h
emberAfDutyCycleCallback#
void emberAfDutyCycleCallback (uint8_t channelPage, uint8_t channel, EmberDutyCycleState state)
Callback fires when the duty cycle state has changed.
N/A | channelPage | The channel page whose duty cycle state has changed. |
N/A | channel | The channel number whose duty cycle state has changed. |
N/A | state | The current duty cycle state. |
140
of file app/framework/common/zigbee_app_framework_callback.h
emberAfRemoteSetBindingCallback#
EmberZdoStatus emberAfRemoteSetBindingCallback (EmberBindingTableEntry * entry)
The NCP used the external binding modification policy to decide how to handle a remote set binding request. The Host cannot change the current decision, but it can change the policy for future decisions using the setPolicy command.
N/A | entry |
Returns
ZDO response status.
155
of file app/framework/common/zigbee_app_framework_callback.h
emberAfRemoteDeleteBindingCallback#
EmberZdoStatus emberAfRemoteDeleteBindingCallback (uint8_t index)
The NCP used the external binding modification policy to decide how to handle a remote delete binding request. The Host cannot change the current decision, but it can change the policy for future decisions using the setPolicy command.
N/A | index |
Returns
ZDO response status
166
of file app/framework/common/zigbee_app_framework_callback.h
emberAfPollCompleteCallback#
void emberAfPollCompleteCallback (EmberStatus status)
Indicates the result of a data poll to the parent of the local node.
N/A | status | An EmberStatus value: EMBER_SUCCESS - Data was received in response to the poll. EMBER_MAC_NO_DATA - No data was pending. EMBER_DELIVERY_FAILED - The poll message could not be sent. EMBER_MAC_NO_ACK_RECEIVED - The poll message was sent but not acknowledged by the parent. |
178
of file app/framework/common/zigbee_app_framework_callback.h
emberAfPollCallback#
void emberAfPollCallback (EmberNodeId childId, bool transmitExpected)
Indicates that the local node received a data poll from a child.
N/A | childId | The node ID of the child that is requesting data. |
N/A | transmitExpected | True if transmit expected, false otherwise. |
191
of file app/framework/common/zigbee_app_framework_callback.h
emberAfDebugCallback#
void emberAfDebugCallback (EmberMessageBuffer message)
debugHandler
N/A | message | debug message |
201
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIncomingManyToOneRouteRequestCallback#
void emberAfIncomingManyToOneRouteRequestCallback (EmberNodeId source, EmberEUI64 longId, uint8_t cost)
A callback indicating that a many-to-one route to the concentrator with the given short and long id is available for use.
N/A | source | The short id of the concentrator. |
N/A | longId | The EUI64 of the concentrator. |
N/A | cost | The path cost to the concentrator. The cost may decrease as additional route request packets for this discovery arrive, but the callback is made only once. |
214
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIncomingRouteErrorCallback#
void emberAfIncomingRouteErrorCallback (EmberStatus status, EmberNodeId target)
A callback invoked when a route error message is received. The error indicates that a problem routing to or from the target node was encountered.
N/A | status | EMBER_SOURCE_ROUTE_FAILURE or EMBER_MANY_TO_ONE_ROUTE_FAILURE. |
N/A | target | The short id of the remote node. |
230
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIncomingNetworkStatusCallback#
void emberAfIncomingNetworkStatusCallback (uint8_t errorCode, EmberNodeId target)
A callback invoked when a network status/route error message is received. The error indicates that there was a problem sending/receiving messages from the target node.
N/A | errorCode | One byte over-the-air error code from network status message |
N/A | target | The short ID of the remote node |
243
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIncomingRouteRecordCallback#
void emberAfIncomingRouteRecordCallback (EmberNodeId source, EmberEUI64 sourceEui, uint8_t relayCount, EmberMessageBuffer header, uint8_t relayListIndex)
Reports the arrival of a route record command frame.
N/A | source | The source of the route record. |
N/A | sourceEui | The EUI64 of the source. |
N/A | relayCount | The number of relays in relayList. |
N/A | header | Header. |
N/A | relayListIndex | The relay List Index. |
257
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIdConflictCallback#
void emberAfIdConflictCallback (EmberNodeId conflictingId)
A callback invoked by the EmberZNet stack when an id conflict is discovered, that is, two different nodes in the network were found to be using the same short id. The stack automatically removes the conflicting short id from its internal tables (address, binding, route, neighbor, and child tables). The application should discontinue any other use of the id.
N/A | conflictingId | The short id for which a conflict was detected |
277
of file app/framework/common/zigbee_app_framework_callback.h
emberAfMacPassthroughMessageCallback#
void emberAfMacPassthroughMessageCallback (EmberMacPassthroughType messageType, EmberMessageBuffer message)
A callback invoked by the EmberZNet stack when a MAC passthrough message is received.
N/A | messageType | The type of MAC passthrough message received. |
N/A | message | The raw message that was received. |
287
of file app/framework/common/zigbee_app_framework_callback.h
emberAfStackTokenChangedCallback#
void emberAfStackTokenChangedCallback (uint16_t tokenAddress)
A callback invoked to inform the application that a stack token has changed.
N/A | tokenAddress | The address of the stack token that has changed. |
297
of file app/framework/common/zigbee_app_framework_callback.h
emberAfTimerCallback#
void emberAfTimerCallback (uint8_t timerId)
A callback from the timer.
N/A | timerId | Which timer generated the callback (0 or 1). |
305
of file app/framework/common/zigbee_app_framework_callback.h
emberAfCounterRolloverCallback#
void emberAfCounterRolloverCallback (EmberCounterType type)
This call is fired when a counter exceeds its threshold.
N/A | type | Type of Counter |
313
of file app/framework/common/zigbee_app_framework_callback.h
emberAfRawTransmitCompleteCallback#
void emberAfRawTransmitCompleteCallback (EmberMessageBuffer message, EmberStatus status)
A callback invoked by the EmberZNet stack when the MAC has finished transmitting a raw message.
N/A | message | message |
N/A | status | EMBER_SUCCESS if the transmission was successful, or EMBER_DELIVERY_FAILED if not |
324
of file app/framework/common/zigbee_app_framework_callback.h
emberAfSwitchNetworkKeyCallback#
void emberAfSwitchNetworkKeyCallback (uint8_t sequenceNumber)
A callback to inform the application that the Network Key has been updated and the node has been switched over to use the new key. The actual key being used is not passed up, but the sequence number is.
N/A | sequenceNumber | The sequence number of the new network key. |
337
of file app/framework/common/zigbee_app_framework_callback.h
emberAfZigbeeKeyEstablishmentCallback#
void emberAfZigbeeKeyEstablishmentCallback (EmberEUI64 partner, EmberKeyStatus status)
This is a callback that indicates the success or failure of an attempt to establish a key with a partner device.
N/A | partner | This is the IEEE address of the partner that the device successfully established a key with. This value is all zeros on a failure. |
N/A | status | This is the status indicating what was established or why the key establishment failed. |
349
of file app/framework/common/zigbee_app_framework_callback.h
emberAfGenerateCbkeKeysCallback#
void emberAfGenerateCbkeKeysCallback (EmberStatus status, EmberPublicKeyData * ephemeralPublicKey)
A callback by the Crypto Engine indicating that a new ephemeral public/private key pair has been generated. The public/private key pair is stored on the NCP, but only the associated public key is returned to the host. The node's associated certificate is also returned.
N/A | status | The result of the CBKE operation. |
N/A | ephemeralPublicKey |
Returns
ephemeralPublicKey The generated ephemeral public key.
365
of file app/framework/common/zigbee_app_framework_callback.h
emberAfCalculateSmacsCallback#
void emberAfCalculateSmacsCallback (EmberStatus status, EmberSmacData * initiatorSmac, EmberSmacData * responderSmac)
A callback to indicate that the NCP has finished calculating the Secure Message Authentication Codes (SMAC) for both the initiator and responder. The associated link key is kept in temporary storage until the host tells the NCP to store or discard the key via emberClearTemporaryDataMaybeStoreLinkKey().
N/A | status | The Result of the CBKE operation. |
N/A | initiatorSmac | |
N/A | responderSmac |
Returns
initiatorSmac The calculated value of the initiator's SMAC
responderSmac The calculated value of the responder's SMAC
380
of file app/framework/common/zigbee_app_framework_callback.h
emberAfDsaSignCallback#
void emberAfDsaSignCallback (EmberStatus status, EmberMessageBuffer signedMessage)
The handler that returns the results of the signing operation. On success, the signature will be appended to the original message (including the signature type indicator that replaced the startIndex field for the signing) and both are returned via this callback.
N/A | status | The result of the DSA signing operation. |
N/A | signedMessage | The message and attached which includes the original message and the appended signature. |
397
of file app/framework/common/zigbee_app_framework_callback.h
emberAfDsaVerifyCallback#
void emberAfDsaVerifyCallback (EmberStatus status)
This callback is executed by the stack when the DSA verification has completed and has a result. If the result is EMBER_SUCCESS, the signature is valid. If the result is EMBER_SIGNATURE_VERIFY_FAILURE then the signature is invalid. If the result is anything else then the signature verify operation failed and the validity is unknown.
N/A | status | The result of the DSA verification operation. |
412
of file app/framework/common/zigbee_app_framework_callback.h
emberAfIncomingBootloadMessageCallback#
void emberAfIncomingBootloadMessageCallback (EmberEUI64 longId, EmberMessageBuffer message)
A callback invoked by the EmberZNet stack when a bootload message is received.
N/A | longId | The EUI64 of the sending node. |
N/A | message | The bootload message that was sent. |
421
of file app/framework/common/zigbee_app_framework_callback.h
emberAfBootloadTransmitCompleteCallback#
void emberAfBootloadTransmitCompleteCallback (EmberMessageBuffer message, EmberStatus status)
A callback invoked by the EmberZNet stack when the MAC has finished transmitting a bootload message.
N/A | message | The bootload message that was sent. |
N/A | status | An EmberStatus value of EMBER_SUCCESS if an ACK was received from the destination or EMBER_DELIVERY_FAILED if no ACK was received. |
434
of file app/framework/common/zigbee_app_framework_callback.h
emberAfZllNetworkFoundCallback#
void emberAfZllNetworkFoundCallback (const EmberZllNetwork * networkInfo, const EmberZllDeviceInfoRecord * deviceInfo)
This call is fired when a ZLL network scan finds a ZLL network.
N/A | networkInfo | |
N/A | deviceInfo |
Returns
networkInfo Information about the network.
deviceInfo Device specific information.
446
of file app/framework/common/zigbee_app_framework_callback.h
emberAfZllScanCompleteCallback#
void emberAfZllScanCompleteCallback (EmberStatus status)
This call is fired when a ZLL network scan is complete.
N/A | status | Status of the operation. |
456
of file app/framework/common/zigbee_app_framework_callback.h
emberAfZllAddressAssignmentCallback#
void emberAfZllAddressAssignmentCallback (const EmberZllAddressAssignment * addressInfo)
This call is fired when network and group addresses are assigned to a remote mode in a network start or network join request.
N/A | addressInfo |
Returns
addressInfo Address assignment information.
465
of file app/framework/common/zigbee_app_framework_callback.h
emberAfZllTouchLinkTargetCallback#
void emberAfZllTouchLinkTargetCallback (const EmberZllNetwork * networkInfo)
This call is fired when the device is a target of a touch link.
N/A | networkInfo |
Returns
networkInfo Information about the network.
473
of file app/framework/common/zigbee_app_framework_callback.h
emberAfMacFilterMatchMessageCallback#
void emberAfMacFilterMatchMessageCallback (const EmberMacFilterMatchStruct * macFilterMatchStruct)
A callback invoked by the EmberZNet stack when a raw MAC message that has matched one of the application's configured MAC filters.
N/A | macFilterMatchStruct |
Returns
macFilterMatchStruct macFilterMatchStruct.
482
of file app/framework/common/zigbee_app_framework_callback.h
emberAfDGpSentCallback#
void emberAfDGpSentCallback (EmberStatus status, uint8_t gpepHandle)
A callback to the GP endpoint to indicate the result of the GPDF transmission.
N/A | status | An EmberStatus value indicating success or the reason for failure. |
N/A | gpepHandle | The handle of the GPDF. |
492
of file app/framework/common/zigbee_app_framework_callback.h
emberAfPanIdConflictCallback#
EmberStatus emberAfPanIdConflictCallback (int8_t conflictCount)
This handler is called by the stack to report the number of conflict reports exceeds EMBER_PAN_ID_CONFLICT_REPORT_THRESHOLD within a period of 1 minute )
N/A | conflictCount |
Returns
An EmberStatus value indicating success or the reason for failure.
504
of file app/framework/common/zigbee_app_framework_callback.h
emberAfOrphanNotificationCallback#
void emberAfOrphanNotificationCallback (EmberEUI64 longId)
Inform the application that an orphan notification has been received. This is generally not useful for applications. It could be useful in testing and is included for this purpose.
N/A | longId | The 8 byte EUI64 of the sender. |
514
of file app/framework/common/zigbee_app_framework_callback.h
emberAfCounterCallback#
void emberAfCounterCallback (EmberCounterType type, EmberCounterInfo Info)
This handler is called when the value of a counter has changed.
N/A | type | Type of Counter |
N/A | Info | Counter Info and value |
523
of file app/framework/common/zigbee_app_framework_callback.h
emberAfMacPassthroughFilterCallback#
bool emberAfMacPassthroughFilterCallback (uint8_t * macHeader)
This handler is called for messages that need to be matched against mac passthrough filter.
N/A | macHeader |
Returns
True if mac passthrough filter was matched. False otherwise.
535
of file app/framework/common/zigbee_app_framework_callback.h
emberAfGenerateCbkeKeysHandler283k1Callback#
void emberAfGenerateCbkeKeysHandler283k1Callback (EmberStatus status, EmberPublicKey283k1Data * ephemeralPublicKey)
A callback by the Crypto Engine indicating that a new ephemeral public/private key pair has been generated. The public/private key pair is stored on the NCP, but only the associated public key is returned to the host. The node's associated certificate is also returned.
N/A | status | The result of the CBKE operation. |
N/A | ephemeralPublicKey |
Returns
ephemeralPublicKey The generated ephemeral public key.
547
of file app/framework/common/zigbee_app_framework_callback.h
emberAfCalculateSmacsHandler283k1Callback#
void emberAfCalculateSmacsHandler283k1Callback (EmberStatus status, EmberSmacData * initiatorSmac, EmberSmacData * responderSmac)
A callback to indicate that the NCP has finished calculating the Secure Message Authentication Codes (SMAC) for both the initiator and responder. The associated link key is kept in temporary storage until the host tells the NCP to store or discard the key via emberClearTemporaryDataMaybeStoreLinkKey().
N/A | status | The Result of the CBKE operation. |
N/A | initiatorSmac | |
N/A | responderSmac |
Returns
initiatorSmac The calculated value of the initiator's SMAC
responderSmac The calculated value of the responder's SMAC
562
of file app/framework/common/zigbee_app_framework_callback.h
emberAfGpepIncomingMessageCallback#
void emberAfGpepIncomingMessageCallback (EmberStatus status, uint8_t gpdLink, uint8_t sequenceNumber, EmberGpAddress * addr, EmberGpSecurityLevel gpdfSecurityLevel, EmberGpKeyType gpdfSecurityKeyType, bool autoCommissioning, uint8_t bidirectionalInfo, uint32_t gpdSecurityFrameCounter, uint8_t gpdCommandId, uint32_t mic, uint8_t proxyTableIndex, uint8_t gpdCommandPayloadLength, uint8_t * gpdCommandPayload)
A callback invoked by the ZigBee GP stack when a GPDF is received.
N/A | status | The status of the GPDF receive. |
N/A | gpdLink | The gpdLink value of the received GPDF. |
N/A | sequenceNumber | The GPDF sequence number. |
N/A | addr | The address of the source GPD. |
N/A | gpdfSecurityLevel | The security level of the received GPDF. |
N/A | gpdfSecurityKeyType | The securityKeyType used to decrypt/authenticate the incoming GPDF. |
N/A | autoCommissioning | Whether the incoming GPDF had the auto-commissioning bit set. |
N/A | bidirectionalInfo | Bidirectional information represented in bitfields, where bit0 holds the rxAfterTx of incoming gpdf and bit1 holds if tx queue is available for outgoing gpdf. |
N/A | gpdSecurityFrameCounter | The security frame counter of the incoming GDPF. |
N/A | gpdCommandId | The gpdCommandId of the incoming GPDF. |
N/A | mic | The received MIC of the GPDF. |
N/A | proxyTableIndex | The proxy table index of the corresponding proxy table entry to the incoming GPDF. |
N/A | gpdCommandPayloadLength | The length of the GPD command payload. |
N/A | gpdCommandPayload | The GPD command payload. |
593
of file app/framework/common/zigbee_app_framework_callback.h
emberAfRtosStackWakeupIsrCallback#
void emberAfRtosStackWakeupIsrCallback (void )
Rtos Stack Wakeup Isr Handler.
N/A |
629
of file app/framework/common/zigbee_app_framework_callback.h
emberAfRadioNeedsCalibratingCallback#
void emberAfRadioNeedsCalibratingCallback (void )
RadioNeedsCalibratingHandler.
N/A |
634
of file app/framework/common/zigbee_app_framework_callback.h
emberAfScanErrorCallback#
void emberAfScanErrorCallback (EmberStatus status)
scanErrorHandler
N/A | status | The error status of a scan |
640
of file app/framework/common/zigbee_app_framework_callback.h