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; }
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(); }
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(); }
// 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; }