Module Interface IPhysicalLayer

Package: inet.physicallayer.contract.packetlevel
File: src/inet/physicallayer/contract/packetlevel/IPhysicalLayer.ned

This module interface provides an abstraction for the interface of different physical layers.

IPhysicalLayer

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.

Known subclasses:

Name Type Description
IRadio module interface

Prototype for radio modules. Radio modules deal with the transmission of frames over a wireless medium (the radio medium).

Properties:

Name Value Description
display i=block/fork

Source code:

//
// This module interface provides an abstraction for the interface of different
// physical layers.
//
moduleinterface IPhysicalLayer
{
    parameters:
        @display("i=block/fork");
    gates:
        input upperLayerIn @labels(ILinkLayerFrame/down);
        output upperLayerOut @labels(ILinkLayerFrame/up);
}