Class PhyControlInfo

File: src/linklayer/contract/PhyControlInfo.msg

Control info for controlling the physical layer (the radio).

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.

Fields:

Name Type Description
channelNumber int

with PHY_C_CONFIGURERADIO: the channel to switch to

bitrate double

with PHY_C_CONFIGURERADIO: the bitrate to switch to

Source code:

//
// Control info for controlling the physical layer (the radio).
//
class PhyControlInfo
{
    int channelNumber = -1; // with PHY_C_CONFIGURERADIO: the channel to switch to
    double bitrate = -1; // with PHY_C_CONFIGURERADIO: the bitrate to switch to
}