Uses of Interface
tuwien.auto.calimero.link.medium.RawFrame

Packages that use RawFrame
tuwien.auto.calimero.link.event Listeners and events used together with network links. 
tuwien.auto.calimero.link.medium Contains setting types storing necessary KNX device and medium information, and KNX message frame types for different KNX communication media. 
 

Uses of RawFrame in tuwien.auto.calimero.link.event
 

Methods in tuwien.auto.calimero.link.event that return RawFrame
 RawFrame MonitorFrameEvent.getRawFrame()
          Returns the decoded raw frame on medium.
 

Constructors in tuwien.auto.calimero.link.event with parameters of type RawFrame
MonitorFrameEvent(java.lang.Object source, CEMI frame, RawFrame rawFrame)
          Creates a new monitor frame event with the indication frame and the decoded raw frame.
 

Uses of RawFrame in tuwien.auto.calimero.link.medium
 

Classes in tuwien.auto.calimero.link.medium that implement RawFrame
 class PL110Ack
          Raw acknowledge frame on PL110 communication medium.
 class PL110LData
          L-data frame format on PL110 communication medium.
 class PL132Ack
          Raw acknowledge frame on PL132 communication medium.
 class PL132LData
          L-data frame format on PL132 communication medium.
 class RawAckBase
          Implementation of common functionality for raw acknowledge frames.
 class RawFrameBase
          Implementation for raw frames with common used functionality in L-data and L-polldata frames.
 class TP1Ack
          Raw acknowledge frame on TP1 communication medium.
 class TP1LData
          L-data frame format on TP1 communication medium.
 class TP1LPollData
          L-polldata frame format on TP1 communication medium.
 

Methods in tuwien.auto.calimero.link.medium that return RawFrame
static RawFrame RawFrameFactory.create(int mediumType, byte[] data, int offset)
          Creates a raw frame out of a byte array for the specified communication medium.
static RawFrame RawFrameFactory.createPL110(byte[] data, int offset)
          Creates a raw frame out of a byte array for the PL110 communication medium.
static RawFrame RawFrameFactory.createPL132(byte[] data, int offset)
          Creates a raw frame out of a byte array for the PL132 communication medium.
static RawFrame RawFrameFactory.createTP1(byte[] data, int offset)
          Creates a raw frame out of a byte array for the TP1 communication medium.