Index: /trunk/BNC/bncmodel.cpp
===================================================================
--- /trunk/BNC/bncmodel.cpp	(revision 2130)
+++ /trunk/BNC/bncmodel.cpp	(revision 2131)
@@ -558,4 +558,14 @@
   emit newMessage(QByteArray(str2.str().c_str()), true);
 
+  // NMEA Output
+  // -----------
+  if (_nmeaStream) {
+    ostringstream str3;
+    str3.setf(ios::fixed);
+    str3 << "GPGGA," << epoData->tt.timestr(0,0);
+                   
+    writeNMEAstr(QString(str3.str().c_str()));
+  }
+
   return success;
 }
