Index: trunk/BNC/src/bncgetthread.cpp
===================================================================
--- trunk/BNC/src/bncgetthread.cpp	(revision 10511)
+++ trunk/BNC/src/bncgetthread.cpp	(revision 10517)
@@ -40,4 +40,5 @@
 
 #include <stdlib.h>
+#include <iostream>
 #include <iomanip>
 #include <sstream>
@@ -78,8 +79,8 @@
 bncGetThread::bncGetThread(bncRawFile* rawFile) {
 
-  _rawFile = rawFile;
-  _format = rawFile->format();
-  _staID = rawFile->staID();
-  _rawOutput = false;
+  _rawFile      = rawFile;
+  _format       = rawFile->format();
+  _staID        = rawFile->staID();
+  _rawOutput    = false;
   _ntripVersion = "N";
 
@@ -93,10 +94,10 @@
     const QByteArray& nmea, const QByteArray& ntripVersion) {
   _rawFile = 0;
-  _mountPoint = mountPoint;
-  _staID = mountPoint.path().mid(1).toLatin1();
-  _format = format;
-  _latitude = latitude;
-  _longitude = longitude;
-  _nmea = nmea;
+  _mountPoint   = mountPoint;
+  _staID        = mountPoint.path().mid(1).toLatin1();
+  _format       = format;
+  _latitude     = latitude;
+  _longitude    = longitude;
+  _nmea         = nmea;
   _ntripVersion = ntripVersion;
 
@@ -108,10 +109,6 @@
     _rawOutput = false;
   }
-  if  (!settings.value("miscMount").toString().isEmpty()) {
-    _latencycheck = true;
-  }
-  else {
-    _latencycheck = false;
-  }
+
+  _latencycheck = true; // in order to allow at least to check for reconnect
 
   _NMEASampl = settings.value("serialNMEASampling").toInt();
@@ -944,4 +941,10 @@
         }
       }
+
+/*
+      for (int ii = 0; ii < decoder()->_helmertParList.size(); ii++) {
+        decoder()->_helmertParList[ii].print();
+      }
+*/
     }
   }
Index: trunk/BNC/src/latencychecker.cpp
===================================================================
--- trunk/BNC/src/latencychecker.cpp	(revision 10511)
+++ trunk/BNC/src/latencychecker.cpp	(revision 10517)
@@ -94,8 +94,8 @@
   // Latency interval/average
   // ------------------------
-  _miscIntr = 1;
+  _miscIntr = 300;
   QString miscIntr = settings.value("miscIntr").toString();
   if      ( miscIntr.isEmpty() ) {
-    _miscIntr = 1;
+    _miscIntr = 300;
   }
   else if ( miscIntr.indexOf("2 sec")   != -1 ) {
