use of jmri.jmrix.lenz.XNetTrafficController in project JMRI by JMRI.
the class ZTC640Adapter method configure.
/**
* set up all of the other objects to operate with a ZTC640 connected to
* this port
*/
@Override
public void configure() {
// connect to a packetizing traffic controller
XNetTrafficController packets = new ZTC640XNetPacketizer(new LenzCommandStation());
packets.connectPort(this);
// start operation
// packets.startThreads();
this.getSystemConnectionMemo().setXNetTrafficController(packets);
new XNetInitializationManager(this.getSystemConnectionMemo());
}
Aggregations