Index: /trunk/BNC/bnchelp.html
===================================================================
--- /trunk/BNC/bnchelp.html	(revision 179)
+++ /trunk/BNC/bnchelp.html	(revision 180)
@@ -129,5 +129,9 @@
 <p><h4>B - 4.1 Wait for Full Epoch - optional</h4></p>
 <p>
-When feeding a real-time GNSS engine waiting for input from BNC epoch by epoch, BNC ignores whatever is received later then 'Wait for full epoch' seconds. A value of 2 to 5 seconds may be an appropriate choice for that, depending on the delay you can accept for your real-time product. Default value for 'Wait for full ecpch' is zero  '0', meaning that no synchronized output is generated.
+When feeding a real-time GNSS engine waiting for input from BNC epoch by
+epoch, BNC ignores whatever is received later then 'Wait for full epoch'
+seconds. A value of 2 to 5 seconds may be an appropriate choice for that,
+depending on the delay you can accept for your real-time product. Default
+value for 'Wait for full ecpch' is 1 second.
 </p>
 <p>
Index: /trunk/BNC/bncmain.cpp
===================================================================
--- /trunk/BNC/bncmain.cpp	(revision 179)
+++ /trunk/BNC/bncmain.cpp	(revision 180)
@@ -43,6 +43,17 @@
   QCoreApplication::setApplicationName("BKG_NTRIP_Client");
 
+  // Default Settings
+  // ----------------
   QSettings settings;
+  if (settings.allKeys().size() == 0) {
+    settings.setValue("casterHost", "www.euref-ip.net");
+    settings.setValue("casterPort", 80);
+    settings.setValue("rnxIntr",    "15 min");
+    settings.setValue("rnxSkel",    "SKL");
+    settings.setValue("waitTime",   2);
+  }
 
+  // Interactive Mode - open the main window
+  // ---------------------------------------
   if (GUIenabled) {
 
@@ -60,4 +71,7 @@
     bncWin->show();
   }
+
+  // Non-Interactive (Batch) Mode
+  // ----------------------------
   else {
     bncCaster* caster = new bncCaster(settings.value("outFile").toString(),
@@ -88,4 +102,7 @@
     }
   }
+
+  // Start the application
+  // ---------------------
   return app.exec();
 }
