Beispiel #1
0
 public UbloxDevice(int id, UbloxGPSController controller, string GPSName, string ComName, int baud)
     : base(id, controller,GPSName, ComName, baud)
 {
     //  this.DeviceName= GPSName;
       //  this.IsReference = IsReference;
     //this.controller = controller;
     //new System.Threading.Thread(ProcessGpsSignal).Start();
 }
Beispiel #2
0
 public UbloxDevice(int id, UbloxGPSController controller, string GPSName, System.Net.IPEndPoint endpoint, double refx, double refy, double refz,bool IsReference)
     : base(id, controller, GPSName, endpoint)
 {
     this.IsReference = IsReference;
     this.refx = refx;
     this.refy = refy;
     this.refz = refz;
 }
Beispiel #3
0
 // const int constHatchQueueCnt = 100;
 // int ValidDataCnt = 0;
 //  long LastTimeStamp = 0;
 //  System.Collections.Generic.Queue<GPSData> queue = new System.Collections.Generic.Queue<GPSData>();
 public UbloxDevice(int id, UbloxGPSController controller, string GPSName, string ComName, int baud, double refx, double refy, double refz, bool IsRefreence)
     : this(id, controller, GPSName, ComName, baud)
 {
     this.IsReference = true;
     this.refx = refx;
     this.refy = refy;
     this.refz = refz;
 }