Namespace inet::physicallayer
Ieee80211ConfigureRadioCommand
classControl info attached to a configure command that is sent to the Radio.
Extends
| Name | Type | Description |
|---|---|---|
| ConfigureRadioCommand | (unknown -- not in documented files) |
Fields
| Name | Type | Description |
|---|---|---|
| opMode | string |
new default operation mode or "" if not set. |
| modeSet | Ieee80211ModeSet |
new default mode set or nullptr if not set. |
| mode | IIeee80211Mode |
new default transmission mode or nullptr if not set. |
| band | IIeee80211Band |
new default band or nullptr if not set. |
| channel | Ieee80211Channel |
new default band and channel or nullptr if not set. |
| channelNumber | int |
new default channel number in the range [0, numChannels] or -1 if not set. |
Source code
// // Control info attached to a configure command that is sent to the ~Radio. // class Ieee80211ConfigureRadioCommand extends ConfigureRadioCommand { string opMode; // new default operation mode or "" if not set. const Ieee80211ModeSet *modeSet; // new default mode set or nullptr if not set. const IIeee80211Mode *mode; // new default transmission mode or nullptr if not set. IIeee80211Band *band; // new default band or nullptr if not set. Ieee80211Channel *channel; // new default band and channel or nullptr if not set. int channelNumber = -1; // new default channel number in the range [0, numChannels] or -1 if not set. }File: src/inet/physicallayer/wireless/ieee80211/packetlevel/Ieee80211ControlInfo.msg