NED File src/inet/physicallayer/wireless/apsk/bitlevel/ApskModulator.ned
Name | Type | Description |
---|---|---|
ApskModulator | simple module |
This module is part of a simple hypothetical layered transmitter. It computes the symbol domain representation from the bit domain representation by applying the configured modulation. |
Source code
// // Copyright (C) 2014 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.physicallayer.wireless.apsk.bitlevel; import inet.physicallayer.wireless.common.contract.bitlevel.IModulator; // // This module is part of a simple hypothetical layered transmitter. It computes // the symbol domain representation from the bit domain representation by applying // the configured modulation. // // @see ~ApskDemodulator, ~ApskLayeredTransmitter. // simple ApskModulator like IModulator { parameters: string modulation; // BPSK, QPSK, QAM-16, QAM-64, QAM-256, etc. (see ApskModulationBase::findModulation) @display("i=block/mac"); }