- Timestamp:
- Sep 8, 2006, 2:14:11 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC
- Property svn:ignore
-
old new 3 3 bnc 4 4 anlagen 5 qrc_bnc.cpp 5 6 moc_bnccaster.cpp 6 7 moc_bncgetthread.cpp
-
- Property svn:ignore
-
trunk/BNC/.cvsignore
r83 r142 3 3 bnc 4 4 anlagen 5 qrc_bnc.cpp 5 6 moc_bnccaster.cpp 6 7 moc_bncgetthread.cpp -
trunk/BNC/RTCM/RTCM.cpp
r141 r142 1 1 // -*- C++ -*- 2 2 // RTCM.C 3 // $Id: RTCM.cpp,v 1. 1.1.1 2006/05/30 11:05:27mervart Exp $3 // $Id: RTCM.cpp,v 1.2 2006/09/08 12:07:14 mervart Exp $ 4 4 // 2005/04/11: counter 'iPCode' for indicating CA or P Code on L1 (BKG) 5 5 … … 874 874 #if 1 875 875 #ifdef DEBUG 876 fprintf(stderr, " unknown byte type %d (%d 0x%0x)\n", b >> DATA_SHIFT,876 fprintf(stderr, "RTCM 2.x: unknown byte type %d (%d 0x%0x)\n", b >> DATA_SHIFT, 877 877 b, b); 878 878 #endif -
trunk/BNC/bnccaster.cpp
r141 r142 83 83 long newTime = obs->GPSWeek * 7*24*3600 + obs->GPSWeeks; 84 84 85 cout << "newTime " << newTime << endl;86 87 85 // First time, set the _lastDumpSec immediately 88 86 // -------------------------------------------- … … 107 105 // Dump older epochs 108 106 // ----------------- 109 cout << "dump " << _lastDumpSec << " " << newTime - _waitTime << endl;110 107 dumpEpochs(_lastDumpSec + 1, newTime - _waitTime); 111 108 _lastDumpSec = newTime - _waitTime; -
trunk/BNC/bncmain.cpp
r114 r142 54 54 } 55 55 } 56 57 app.setWindowIcon(QPixmap(":ntrip-logo-grau.bmp")); 56 58 57 59 bncWindow* bncWin = new bncWindow(); -
trunk/BNC/bncwindow.cpp
r139 r142 410 410 "Version 1.0"); 411 411 412 QMessageBox::information(this, "About", str, QMessageBox::Ok); 412 QMessageBox mb("BNC", str, 413 QMessageBox::Information, 414 QMessageBox::Ok | QMessageBox::Default, 415 QMessageBox::NoButton, 416 QMessageBox::NoButton); 417 418 mb.setIconPixmap(QPixmap(":ntrip-logo-blau.bmp")); 419 420 mb.exec(); 413 421 } 414 422
Note:
See TracChangeset
for help on using the changeset viewer.