Simple Module Decider80211

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

C++ definition

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.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Used in compound modules:

Name Type Description
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 @labels(Mac80211Pkt);
        input lowergateIn;
}