Simple Module ErrAndCollDecider

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

C++ definition

Decider module to use with digital channel modules like GilbertElliotSnr

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

ErrAndCollDecider

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.

Parameters:

Name Type Default value Description
debug bool false

debug switch

snrThresholdLevel double

Gates:

Name Direction Size Description
uppergateOut output
lowergateIn input

Source code:

//
// Decider module to use with digital channel modules like GilbertElliotSnr
//
// This component has been taken over from Mobility Framework 1.0a5.
//
simple ErrAndCollDecider
{
    parameters:
        bool debug = default(false); // debug switch
        double snrThresholdLevel @unit("dB");
    gates:
        output uppergateOut;
        input lowergateIn;
}