1.3.5.4.32 DL_432_BUFFER Union

C

typedef union {
	uint8_t lpdu[CL_432_MAX_LENGTH_DATA + CL_432_LPDU_HEADER];

	struct {
		uint8_t control;
		uint8_t dsap;
		uint8_t lsap;
		uint8_t buff[CL_432_MAX_LENGTH_DATA];
	} dl;
} DL_432_BUFFER;

Summary

Data structure of the buffer for transmission and reception.

Description

This structure contains the definition of the buffer used for tranmission and reception of messages in the 4-32 Convergence layer.

Remarks

None.