1.3.5.4.46 CL_432_DlDataRequest Function
C
void CL_432_DlDataRequest
(
uint8_t dstLsap,
uint8_t srcLsap,
uint16_t dstAddress,
DL_432_BUFFER *buff,
uint16_t lsduLen,
uint8_t linkClass
);
Summary
Request the transmission of data over a CL-432 connection.
Description
This routine is used to request the transmission of data over a CL-432 connection.
Precondition
The CL_432_Initialize routine must have been called before.
Parameters
Param | Description |
---|---|
dstLsap | Destination LSAP |
srcLsap | Source LSAP |
dstAddress | Destination 4-32 address |
buff |
Pointer to the data buffer |
lsduLen | Length of the data |
linkClass | Link class (not used) |
Returns
None.
Example
uint16_t msgLen = 20;
DL_432_BUFFER msg[msgLen] = {0};
CL_432_DlDataRequest(2, 0, 300, msg, msgLen, 0);
Remarks
The result of the request is returned in the confirm callback.