NED File src/inet/physicallayer/wireless/apsk/packetlevel/ApskScalarRadio.ned
Name | Type | Description |
---|---|---|
ApskScalarRadio | compound module |
This radio model provides a hypothetical radio that simply uses one of the well-known modulations without utilizing other techiques such as forward error correction, interleaving, spreading, etc. It must be used in conjunction with the ApskScalarRadioMedium model. |
Source code
// // Copyright (C) 2013 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.physicallayer.wireless.apsk.packetlevel; // // This radio model provides a hypothetical radio that simply uses one of the // well-known modulations without utilizing other techiques such as forward // error correction, interleaving, spreading, etc. It must be used in // conjunction with the ~ApskScalarRadioMedium model. // // @see ~ApskScalarRadioMedium, ~ScalarAnalogModel, ~ApskScalarTransmitter, // ~ApskScalarReceiver. // module ApskScalarRadio extends ApskRadio { parameters: transmitter.typename = default("ApskScalarTransmitter"); receiver.typename = default("ApskScalarReceiver"); }