Changeset 36 in ntrip
- Timestamp:
- May 30, 2006, 1:11:19 PM (19 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/RTCM.h
r35 r36 1 1 // -*- C++ -*- 2 2 // 3 // $Id: RTCM.h,v 1.1.1.1 2006/0 1/11 09:34:31mervart Exp $3 // $Id: RTCM.h,v 1.1.1.1 2006/05/30 11:05:27 mervart Exp $ 4 4 5 5 #if defined(__GNUC__) … … 193 193 op->GPSWeek= timeTag / Date::SECONDS_PER_WEEK; 194 194 op->GPSWeeks= timeTag % Date::SECONDS_PER_WEEK; 195 op->sec = obsMapTimeTagMod3600; 195 op->sec = obsMapTimeTagMod3600!=3600.0 ? obsMapTimeTagMod3600 : 0.0; 196 196 op->C1= i->second.C1; 197 197 op->P2= i->second.P2; -
trunk/BNC/bncgetthread.cpp
r35 r36 25 25 using namespace std; 26 26 27 const int timeOut = 10*1000;27 const int timeOut = 30*1000; 28 28 29 29 // Constructor -
trunk/BNC/bncmain.cpp
r35 r36 16 16 * -----------------------------------------------------------------------*/ 17 17 18 #ifdef WIN32 18 19 #include <windows.h> 20 #endif 19 21 20 22 #include <QApplication>
Note:
See TracChangeset
for help on using the changeset viewer.