1.3.5.4.10 CL_NULL_RedirectResponse Function

C

void CL_NULL_RedirectResponse
(
    uint16_t conHandle,
    uint8_t *eui48,
    uint8_t *data,
    uint16_t dataLen
);

Summary

Response to a direct connection establishment indication.

Description

This routine is used to respond to a direct connection establishment indication.

Precondition

The CL_NULL_Initialize routine must have been called before.

Parameters

ParamDescription
conHandleUnique identifier of the connection
eui48

Pointer to the address of the node to which this connection will be "redirected"

dataData associated with the connection establishment procedure
dataLenLength of the data in bytes

Returns

None.

Example

uint8_t eui48[6];
memset(eui48, 0x12, 6);

CL_NULL_RedirectResponse(8, eui48, NULL, 0);

Remarks

None.