Ignore:
Timestamp:
Dec 22, 2014, 11:38:17 AM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncephuploadcaster.cpp

    r5855 r6403  
    6868      unsigned char Array[80];
    6969      int size = 0;
    70       t_ephGPS* ephGPS = dynamic_cast<t_ephGPS*>(eph);
    71       t_ephGlo* ephGlo = dynamic_cast<t_ephGlo*>(eph);
    72       t_ephGal* ephGal = dynamic_cast<t_ephGal*>(eph);
     70      t_ephGPS*     ephGPS     = dynamic_cast<t_ephGPS*>(eph);
     71      t_ephGlo*     ephGlo     = dynamic_cast<t_ephGlo*>(eph);
     72      t_ephGal*     ephGal     = dynamic_cast<t_ephGal*>(eph);
     73      t_ephSBAS*    ephSBAS    = dynamic_cast<t_ephSBAS*>(eph);
     74      t_ephCompass* ephCompass = dynamic_cast<t_ephCompass*>(eph);
    7375      if (ephGPS) {
    7476        size = t_ephEncoder::RTCM3(*ephGPS, Array);
     
    7981      else if (ephGal) {
    8082        size = t_ephEncoder::RTCM3(*ephGal, Array);
     83      }
     84      else if (ephSBAS) {
     85        size = t_ephEncoder::RTCM3(*ephSBAS, Array);
     86      }
     87      else if (ephCompass) {
     88        size = t_ephEncoder::RTCM3(*ephCompass, Array);
    8189      }
    8290      if (size > 0) {
Note: See TracChangeset for help on using the changeset viewer.