2.5.6 PHY_FrameInfo_t Struct

C

typedef struct frame_info_tag
{
    /** Pointer to buffer header of frame */
    buffer_t *buffer_header;
    /** Pointer to MPDU */
    uint8_t *mpdu;
} PHY_FrameInfo_t;

Summary

PHY_FrameInfo_t holds the data to be transmitted or the data being received by the transceiver.

Description

ParamDescription
bufferHeaderPointer to transmit buffer
mpduPointer to the PHY Payload. mpdu should hold the length of the payload(N) + 1 (for length field length)
mpduHold the phyPayload

Remarks

None