Simple Module SnrDecider

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

C++ definition: click here

Decider module to be used with SnrEval

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

SnrDecider

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.

SnrNic (compound module)

This is the easiest nic to implement "real" network behaviour. It uses the CsmaMacLayer and the SnrDecider and SnrEval modules.

Parameters:

Name Type Default value Description
debug bool false

debug switch

snrThresholdLevel double

Properties:

Name Value Description
display i=box2_s

Gates:

Name Direction Size Description
uppergateOut output
lowergateIn input

Source code:

//
// Decider module to be used with SnrEval
//
// This component has been taken over from Mobility Framework 1.0a5.
//
simple SnrDecider
{
    parameters:
        bool debug = default(false); // debug switch
        double snrThresholdLevel @unit("dB");
        @display("i=box2_s");
    gates:
        output uppergateOut;
        input lowergateIn;
}