Changeset 8199 in ntrip


Ignore:
Timestamp:
Dec 11, 2017, 11:55:47 AM (6 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3Decoder.cpp

    r8198 r8199  
    13791379}
    13801380
    1381 /*
    1382 ////////////////////////////////////////////////////////////////////////////
    1383 bool RTCM3Decoder::DecodeAntennaReceiver(unsigned char* data, int size) {
    1384   char *antenna, type[256];
    1385   int antnum = -1;
    1386   uint64_t numbits = 0, bitfield = 0;
    1387 
    1388   data += 4;
    1389   size -= 6;
    1390 
    1391   SKIPBITS(12)
    1392   GETSTRING(antnum, antenna)
    1393   if (antnum > -1 && antnum < 265) {
    1394     memcpy(type, antenna, antnum);
    1395     type[antnum] = 0;
    1396     if (!_antType.contains(type)) {
    1397       _antType.push_back(type);
    1398     }
    1399   }
    1400   return true;
    1401 }*/
    1402 
    14031381//
    14041382////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.