1.2.5.89 LBP_COORD_JOIN_COMPLETE_IND_CALLBACK Typedef
C
typedef void (*LBP_COORD_JOIN_REQUEST_IND_CALLBACK)(uint8_t* pLbdAddress, uint16_t assignedAddress);
Summary
Pointer to a Join Complete Indication Event handler function.
Description
This data type defines the required function signature for the LBP Join Complete Indication event handling callback function.
The LBP Join Complete Indication primitive allows the upper layer to be notified of the successful completion of a Network Join for a certain device.
A client must register a pointer using the event handling function whose function signature (parameter and return value types) matches the types specified by this function pointer in order to receive Join Complete Indication events back from module.
Parameters
Param | Description |
---|---|
pLbdAddress | Pointer to Extended Address of device that Joined the network |
assignedAddress | The 16-bit address of device that Joined the network |
Returns
None.
Example
App_JoinCompleteIndication(uint8_t* pLbdAddress, uint16_t assignedAddress) { // New device joined the network }
Remarks
None.