File Applications/i3/OverlayI3.ned
Contains:
import "I3", "TriggerTable";
module OverlayI3
parameters:
debugOutput: bool;
gates:
in: from_udp;
in: from_lowerTier;
in: from_upperTier;
out: to_udp;
out: to_lowerTier;
out: to_upperTier;
submodules:
i3: I3;
triggerTable: TriggerTable;
display: "i=block/table";
connections nocheck:
from_udp --> i3.from_udp;
to_udp <-- i3.to_udp;
from_lowerTier --> i3.from_lowerTier;
to_lowerTier <-- i3.to_lowerTier;
from_upperTier --> i3.from_upperTier;
to_upperTier <-- i3.to_upperTier;
endmodule