SignalBitrateTagBase
classThis is an abstract base class that should not be directly added as a tag.
Usage diagram
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
SignalTagBase | class |
This is an abstract base class that should not be directly added as a tag. |
Known subclasses
Name | Type | Description |
---|---|---|
SignalBitrateInd | class |
This indication specifies the bitrates for various parts of the signal that was used to receive the packet. It may be present on a packet from the phyiscal layer to the application. |
SignalBitrateReq | class |
This request determines the bitrates for various parts of the signal that should be used to transmit the packet. It may be present on a packet from the application to the phyisical layer. |
Fields
Name | Type | Description |
---|---|---|
preambleBitrate | bps |
preamble bitrate in the range (0, +infinity) or NaN if not set. |
headerBitrate | bps |
header bitrate in the range (0, +infinity) or NaN if not set. |
dataBitrate | bps |
data bitrate in the range (0, +infinity) or NaN if not set. |
Source code
// // This is an abstract base class that should not be directly added as a tag. // class SignalBitrateTagBase extends SignalTagBase { bps preambleBitrate = bps(NaN); // preamble bitrate in the range (0, +infinity) or NaN if not set. bps headerBitrate = bps(NaN); // header bitrate in the range (0, +infinity) or NaN if not set. bps dataBitrate = bps(NaN); // data bitrate in the range (0, +infinity) or NaN if not set. }File: src/inet/physicallayer/contract/packetlevel/SignalTag.msg