Simple Module Decider80211

Package: inet.linklayer.mf80211.phyLayer.decider
File: src/linklayer/mf80211/phyLayer/decider/Decider80211.ned

C++ definition: click here

Decider module of the 802.11 modules

This component has been taken over from Mobility Framework 1.0a5.

Decider80211

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

Nic80211 (compound module)

This NIC implements an 802.11 network interface card.

Parameters:

Name Type Default value Description
debug bool false

debug switch

snirThreshold double 4dB
bitrate double

Properties:

Name Value Description
display i=block/process_s

Gates:

Name Direction Size Description
uppergateOut output
lowergateIn input

Source code:

//
// Decider module of the 802.11 modules
//
// This component has been taken over from Mobility Framework 1.0a5.
//
simple Decider80211
{
    parameters:
        bool debug = default(false); // debug switch
        double snirThreshold @unit("dB") = default(4dB);
        double bitrate @unit("bps");
        @display("i=block/process_s");
    gates:
        output uppergateOut;
        input lowergateIn;
}