예제 #1
0
 public static GenericPIDDevice getPid() {
   if (DyIORegestry.get().isAvailable() == false && PIDNamespaceTest.pid == null) {
     setPid(new GenericPIDDevice());
     System.out.println("Creating PID device");
     if (!ConnectionDialog.getBowlerDevice(PIDNamespaceTest.pid)) {
       fail("Device not availible");
     }
   }
   return PIDNamespaceTest.pid;
 }
예제 #2
0
 /**
  * Constructor. Creates an counter input input channel that is syncronous only by default.
  *
  * @param channel - the channel object requested from the DyIO
  */
 public CounterOutputChannel(int channel) {
   this(DyIORegestry.get().getChannel(channel));
 }