Changeset 8199 in ntrip
- Timestamp:
- Dec 11, 2017, 11:55:47 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r8198 r8199 1379 1379 } 1380 1380 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 1403 1381 // 1404 1382 ////////////////////////////////////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.