use of jmri.jmrix.lenz.XNetPacketizer in project JMRI by JMRI.
the class LI101Adapter method configure.
/**
* set up all of the other objects to operate with a LI101 connected to this
* port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new XNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetPacketizer in project JMRI by JMRI.
the class XNetSimulatorAdapter method configure.
/**
* set up all of the other objects to operate with a XNetSimulator connected
* to this port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
sourceThread = new Thread(this);
sourceThread.start();
new XNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetPacketizer in project JMRI by JMRI.
the class EliteAdapter method configure.
/**
* set up all of the other objects to operate with the Hornby Elite
* connected to this port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XNetPacketizer(new HornbyEliteCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new EliteXNetInitializationManager(this.getSystemConnectionMemo());
}
use of jmri.jmrix.lenz.XNetPacketizer in project JMRI by JMRI.
the class LI100Adapter method configure.
/**
* set up all of the other objects to operate with a LI100 connected to this
* port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new XNetInitializationManager(this.getSystemConnectionMemo());
}
Aggregations