Simple Module APSKDemodulator

Package: inet.physicallayer.apskradio.bitlevel
File: src/inet/physicallayer/apskradio/bitlevel/APSKDemodulator.ned

C++ definition

This module is part of a simple hypothetical layered receiver. It computes the bit domain representation from the symbol domain representation by applying the configured modulation.

See also APSKModulator, APSKLayeredReceiver.

APSKDemodulator

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
modulation string

BPSK, QPSK, QAM-16, QAM-64, QAM-256, etc. (see APSKModulationBase::findModulation)

Properties:

Name Value Description
display i=block/mac

Source code:

//
// This module is part of a simple hypothetical layered receiver. It computes
// the bit domain representation from the symbol domain representation by applying
// the configured modulation.
//
// See also ~APSKModulator, ~APSKLayeredReceiver.
//
simple APSKDemodulator like IDemodulator
{
    parameters:
        string modulation; // BPSK, QPSK, QAM-16, QAM-64, QAM-256, etc. (see APSKModulationBase::findModulation)
        @display("i=block/mac");
}