Changeset 2020 in ntrip


Ignore:
Timestamp:
Nov 25, 2009, 4:19:55 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/clock_orbit_rtcm.c

    r1865 r2020  
    33        Name:           clock_orbit_rtcm.c
    44        Project:        RTCM3
    5         Version:        $Id: clock_orbit_rtcm.c,v 1.16 2009/07/06 06:50:22 mervart Exp $
     5        Version:        $Id: clock_orbit_rtcm.c,v 1.17.2.1 2009/11/25 15:11:47 mervart Exp $
    66        Authors:        Dirk Stöcker
    77        Description:    state space approach for RTCM3
     
    1010#include <stdio.h>
    1111#include <string.h>
     12#include <sys/types.h>
     13
     14#ifndef sparc
    1215#include <stdint.h>
     16#endif
     17
    1318#include "clock_orbit_rtcm.h"
    1419
  • trunk/BNC/bncpppthread.cpp

    r2004 r2020  
    101101void bncPPPthread::slotNewEphGPS(gpsephemeris gpseph) {
    102102  QMutexLocker locker(&_mutex);
    103   cout << "PPP Client: new ephemeris " << gpseph.satellite << endl;
     103
     104  QString prn = QString("G%1").arg(gpseph.satellite, 2, 10, QChar('0'));
     105
     106
     107  cout << "PPP Client: new ephemeris " << prn.toAscii().data() << endl;
    104108}
    105109
Note: See TracChangeset for help on using the changeset viewer.