1.3.5.4.44 CL_432_EstablishRequest Function

C

void CL_432_EstablishRequest
(       
    uint8_t *deviceId, 
    uint8_t deviceIdLen, 
    uint8_t ae
);

Summary

Request a CL-432 connection establishment.

Description

This routine is used to request a CL-432 connection establishment.

Precondition

The CL_432_Initialize routine must have been called before.

Parameters

ParamDescription
deviceId

Pointer to the device identifier data

deviceIdLenLength of the device identifier
ae

Flag to indicate that authentication and encryption is requested (v1.4)

Returns

None.

Example

uint8_t len = 5;
uint8_t devideId[len] = {0};
    
CL_432_EstablishRequest(devideId, len, 0);

Remarks

The result of the request is returned in the confirm callback.