Exemplo n.º 1
0
 public DUT(DUTUpdateGui dutug_)
 {
     TCPClient          = new Client();
     dutug              = dutug_;
     connection_pending = true;
     //host_name = "";
 }
Exemplo n.º 2
0
 public Laser_Aux(ref DUTUpdateGui dutug_) : base(dutug_)
 {
     unit_timeout = 1000;  // 1000ms for a laser device, they always respond quickly
     device_name  = "Laser Aux";
 }
Exemplo n.º 3
0
 public EDM(ref DUTUpdateGui dutug_) : base(dutug_)
 {
     unit_timeout = 60000;
     device_name  = "EDM";
 }
Exemplo n.º 4
0
 public Total_Station(ref DUTUpdateGui dutug_) : base(dutug_)
 {
     unit_timeout = 10000; //set to 10 s
     device_name  = "Total Station";
 }