Пример #1
0
 public GPSDevice(int id,SirfGPSController controller,string GPSName, System.Net.IPEndPoint endpoint, double refx, double refy, double refz):this(id,controller, GPSName,endpoint)
 {
     this.IsReference = true;
     this.refx = refx;
     this.refy = refy;
     this.refz = refz;
 }
Пример #2
0
 public GPSDevice(int id, SirfGPSController controller, string GPSName, System.Net.IPEndPoint endpoint)
     : base(id,controller, GPSName, endpoint)
 {
   
     //this.controller = controller;
     //new System.Threading.Thread(ProcessGpsSignal).Start();
   
  
 }
Пример #3
0
        public GPSDevice(int id,SirfGPSController controller, string GPSName, string ComName, int baud)
            : base(id, controller,GPSName, ComName, baud)
        {
          //  this.DeviceName= GPSName;

            //this.controller = controller;
            //new System.Threading.Thread(ProcessGpsSignal).Start();
          
        }
Пример #4
0
      //  public bool IsReference = false;
      //  public double refx, refy, refz;

     
        public GPSDevice(int id,SirfGPSController controller,  string GPSName, string ComName, int baud, double refx, double refy, double refz) : this(id,controller,GPSName, ComName, baud)
        {

            this.IsReference = true;
            this.refx = refx;
            this.refy = refy;
            this.refz = refz;
           

        }