1.4.3.8 PAL_MSG_REQUEST_DATA Enum
C
typedef struct {
/* Pointer to data buffer */
uint8_t *pData;
/* Delay for transmission in us */
uint32_t timeDelay;
/* Length of the data buffer */
uint16_t dataLength;
/* Physical Physical channel to transmit the message */
uint16_t pch;
/* Buffer identifier */
uint8_t buffId;
/* Attenuation level with which the message must be transmitted */
uint8_t attLevel;
/* Modulation scheme of last transmitted message */
PAL_SCHEME scheme;
/* TX Forced */
uint8_t disableRx;
/* Type A, Type B, Type BC, Type Radio */
PAL_FRAME frameType;
/* Time mode: 0: Absolute mode, 1: Differential mode, 2: Cancel TX */
PAL_TX_TIME_MODE timeMode;
/* Number of channel senses */
uint8_t numSenses;
/* Delay between channel senses in ms */
uint8_t senseDelayMs;
} PAL_MSG_REQUEST_DATA;
Summary
Data structure used for transmission.
Description
This structure contains the MAC Protocol Data Unit (MPDU) to be transmitted and its associated transmission parameters. The PHY Abstraction Layer forwards this information to the medium selected by the MAC layer.
Remarks
None.