1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
/*****************************************************************************
This is a decoder for RTCM-104 3.x, a serial protocol used for
broadcasting pseudorange corrections from differential-GPS reference
stations. The applicable specification is RTCM 10403.1: RTCM Paper
177-2006-SC104-STD. This obsolesces the earlier RTCM-104 2.x
specifications. The specification document is proprietary; ordering
instructions are accessible from <http://www.rtcm.org/>
under "Publications".
Unike the RTCM 2.x protocol, RTCM3.x does not use the strange
sliding-bit-window IS-GPS-200 protocol as a transport layer, but is a
self-contained byte-oriented packet protocol. Packet recognition is
handled in the GPSD packet-getter state machine; this code is
concerned with unpacking the packets into well-behaved C structures,
coping with odd field lengths and fields that may overlap byte
boudaries. These report structures live in gps.h.
Note that the unpacking this module does is probably useful only for
RTCM reporting and diagnostic tools. It is not necessary when
passing RTCM corrections to a GPS, which normally should just be
passed an entire correction packet for processing by their internal
firmware.
Decodes of the following types have been verified: 1004, 1005, 1006,
1008, 1012, 1013, 1029. There is good reason to believe the 1007 code
is correct, as it's identical to 1008 up to where it ends.
The 1033 decode was arrived at by looking at an rtcminspect dump and noting
that it carries an information superset of the 1008. There are additional
Receiver and Firmware fields we're not certain to decode without access
to an RTCM3 standard at revision 4 or later, but the guess in the code
has been observed to correctly analyze a message with a nonempty Receiver
field.
This file is Copyright (c) 2010 by the GPSD project
BSD terms apply: see the file COPYING in the distribution root for details.
*****************************************************************************/
#include <string.h>
#include "gpsd.h"
#include "bits.h"
#ifdef RTCM104V3_ENABLE
/* scaling constants for RTCM3 real number types */
#define GPS_PSEUDORANGE_RESOLUTION 0.02 /* DF011 */
#define PSEUDORANGE_DIFF_RESOLUTION 0.0005 /* DF012,DF042 */
#define CARRIER_NOISE_RATIO_UNITS 0.25 /* DF015, DF045, DF50 */
#define ANTENNA_POSITION_RESOLUTION 0.0001 /* DF025-027 */
#define GLONASS_PSEUDORANGE_RESOLUTION 0.02 /* DF041 */
#define ANTENNA_DEGREE_RESOLUTION 25e-6 /* DF062 */
#define GPS_EPOCH_TIME_RESOLUTION 0.1 /* DF065 */
#define PHASE_CORRECTION_RESOLUTION 0.5 /* DF069-070 */
/* Other magic values */
#define GPS_INVALID_PSEUDORANGE 0x80000 /* DF012, DF018 */
#define GLONASS_INVALID_RANGEINCR 0x2000 /* DF047 */
#define GLONASS_CHANNEL_BASE 7 /* DF040 */
/* Large case statements make GNU indent very confused */
/* *INDENT-OFF* */
/*@ -type @*//* re-enable when we're ready to take this live */
void rtcm3_unpack(const int debug,
/*@out@*/ struct rtcm3_t *rtcm, char *buf)
/* break out the raw bits into the scaled report-structure fields */
{
unsigned int n, n2, n3, n4;
int bitcount = 0;
unsigned int i;
signed long temp;
/*@ -evalorder -sefparams -mayaliasunique @*/
#define ugrab(width) (bitcount += width, ubits((unsigned char *)buf, bitcount-width, width, false))
#define sgrab(width) (bitcount += width, sbits((signed char *)buf, bitcount-width, width, false))
#define GPS_PSEUDORANGE(fld, len) \
{temp = (unsigned long)ugrab(len); \
if (temp == GPS_INVALID_PSEUDORANGE) \
fld.pseudorange = 0; \
else \
fld.pseudorange = temp * GPS_PSEUDORANGE_RESOLUTION;}
#define RANGEDIFF(fld, len) \
temp = (long)sgrab(len); \
if (temp == GPS_INVALID_PSEUDORANGE) \
fld.rangediff = 0; \
else \
fld.rangediff = temp * PSEUDORANGE_DIFF_RESOLUTION;
//assert(ugrab(8) == 0xD3);
//assert(ugrab(6) == 0x00);
ugrab(14);
rtcm->length = (uint)ugrab(10);
rtcm->type = (uint)ugrab(12);
gpsd_report(debug, LOG_RAW, "RTCM3: type %d payload length %d\n",
rtcm->type, rtcm->length);
switch (rtcm->type) {
case 1001: /* GPS Basic RTK, L1 Only */
rtcm->rtcmtypes.rtcm3_1001.header.station_id = (uint)ugrab(12);
rtcm->rtcmtypes.rtcm3_1001.header.tow = (time_t)ugrab(30);
rtcm->rtcmtypes.rtcm3_1001.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1001.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1001.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1001.header.interval = (unsigned short)ugrab(3);
#define R1001 rtcm->rtcmtypes.rtcm3_1001.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1001.header.satcount; i++) {
R1001.ident = (unsigned short)ugrab(6);
R1001.L1.indicator = (unsigned char)ugrab(1);
GPS_PSEUDORANGE(R1001.L1, 24);
RANGEDIFF(R1001.L1, 20);
R1001.L1.locktime = (unsigned char)sgrab(7);
}
#undef R1001
break;
case 1002: /* GPS Extended RTK, L1 Only */
rtcm->rtcmtypes.rtcm3_1002.header.station_id = (uint)ugrab(12);
rtcm->rtcmtypes.rtcm3_1002.header.tow = (time_t)ugrab(30);
rtcm->rtcmtypes.rtcm3_1002.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1002.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1002.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1002.header.interval = (unsigned short)ugrab(3);
#define R1002 rtcm->rtcmtypes.rtcm3_1002.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1002.header.satcount; i++) {
R1002.ident = (unsigned short)ugrab(6);
R1002.L1.indicator = (unsigned char)ugrab(1);
GPS_PSEUDORANGE(R1002.L1, 24);
RANGEDIFF(R1002.L1, 20);
R1002.L1.locktime = (unsigned char)sgrab(7);
R1002.L1.ambiguity = (unsigned char)ugrab(8);
R1002.L1.CNR = (ugrab(8)) * CARRIER_NOISE_RATIO_UNITS;
}
#undef R1002
break;
case 1003: /* GPS Basic RTK, L1 & L2 */
rtcm->rtcmtypes.rtcm3_1003.header.station_id = (uint)ugrab(12);
rtcm->rtcmtypes.rtcm3_1003.header.tow = (time_t)ugrab(30);
rtcm->rtcmtypes.rtcm3_1003.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1003.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1003.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1003.header.interval = (unsigned short)ugrab(3);
#define R1003 rtcm->rtcmtypes.rtcm3_1003.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1003.header.satcount; i++) {
R1003.ident = (unsigned short)ugrab(6);
R1003.L1.indicator =
(unsigned char)ugrab(1);
GPS_PSEUDORANGE(R1003.L1, 24);
RANGEDIFF(R1003.L1, 20);
R1003.L1.locktime = (unsigned char)sgrab(7);
R1003.L2.indicator = (unsigned char)ugrab(2);
GPS_PSEUDORANGE(R1003.L2, 24);
temp = (long)sgrab(20);
if (temp == GPS_INVALID_PSEUDORANGE)
R1003.L2.rangediff = 0;
else
R1003.L2.rangediff = temp * PSEUDORANGE_DIFF_RESOLUTION;
R1003.L2.locktime = (unsigned char)sgrab(7);
}
#undef R1003
break;
case 1004: /* GPS Extended RTK, L1 & L2 */
rtcm->rtcmtypes.rtcm3_1004.header.station_id = (uint)ugrab(12);
rtcm->rtcmtypes.rtcm3_1004.header.tow = (time_t)ugrab(30);
rtcm->rtcmtypes.rtcm3_1004.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1004.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1004.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1004.header.interval = (unsigned short)ugrab(3);
#define R1004 rtcm->rtcmtypes.rtcm3_1004.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1004.header.satcount; i++) {
R1004.ident = (unsigned short)ugrab(6);
R1004.L1.indicator = (bool)ugrab(1);
GPS_PSEUDORANGE(R1004.L1, 24);
RANGEDIFF(R1004.L1, 20);
R1004.L1.locktime = (unsigned char)sgrab(7);
R1004.L1.ambiguity = (unsigned char)ugrab(8);
R1004.L1.CNR = ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
R1004.L2.indicator = (unsigned char)ugrab(2);
GPS_PSEUDORANGE(R1004.L2, 14);
RANGEDIFF(R1004.L2, 20);
R1004.L2.locktime = (unsigned char)sgrab(7);
R1004.L2.CNR = ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
}
#undef R1004
break;
case 1005: /* Stationary Antenna Reference Point, No Height Information */
#define R1005 rtcm->rtcmtypes.rtcm3_1005
R1005.station_id = (unsigned short)ugrab(12);
ugrab(6); /* reserved */
R1005.system = ugrab(3);
R1005.reference_station = (bool)ugrab(1);
R1005.ecef_x = sgrab(38) * ANTENNA_POSITION_RESOLUTION;
R1005.single_receiver = ugrab(1);
ugrab(1);
R1005.ecef_y = sgrab(38) * ANTENNA_POSITION_RESOLUTION;
ugrab(2);
R1005.ecef_z = sgrab(38) * ANTENNA_POSITION_RESOLUTION;
#undef R1005
break;
case 1006: /* Stationary Antenna Reference Point, with Height Information */
#define R1006 rtcm->rtcmtypes.rtcm3_1006
R1006.station_id = (unsigned short)ugrab(12);
(void)ugrab(6); /* reserved */
R1006.system = ugrab(3);
R1006.reference_station = (bool)ugrab(1);
R1006.ecef_x = sgrab(38) * ANTENNA_POSITION_RESOLUTION;
R1006.single_receiver = ugrab(1);
ugrab(1);
R1006.ecef_y = sgrab(38) * ANTENNA_POSITION_RESOLUTION;
ugrab(2);
R1006.ecef_z = sgrab(38) * ANTENNA_POSITION_RESOLUTION;
R1006.height = ugrab(16) * ANTENNA_POSITION_RESOLUTION;
#undef R1006
break;
case 1007: /* Antenna Descriptor */
rtcm->rtcmtypes.rtcm3_1007.station_id = (unsigned short)ugrab(12);
n = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1007.descriptor, buf + 7, n);
rtcm->rtcmtypes.rtcm3_1007.descriptor[n] = '\0';
bitcount += 8 * n;
rtcm->rtcmtypes.rtcm3_1007.setup_id = ugrab(8);
break;
case 1008: /* Antenna Descriptor & Serial Number */
rtcm->rtcmtypes.rtcm3_1008.station_id = (unsigned short)ugrab(12);
n = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1008.descriptor, buf + 7, n);
rtcm->rtcmtypes.rtcm3_1008.descriptor[n] = '\0';
bitcount += 8 * n;
rtcm->rtcmtypes.rtcm3_1008.setup_id = ugrab(8);
n2 = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1008.serial, buf + 9 + n, n2);
rtcm->rtcmtypes.rtcm3_1008.serial[n2] = '\0';
//bitcount += 8 * n2;
break;
case 1009: /* GLONASS Basic RTK, L1 Only */
rtcm->rtcmtypes.rtcm3_1009.header.station_id =
(unsigned short)ugrab(12);
rtcm->rtcmtypes.rtcm3_1009.header.tow = (time_t)ugrab(27);
rtcm->rtcmtypes.rtcm3_1009.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1009.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1009.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1009.header.interval = (unsigned short)ugrab(3);
#define R1009 rtcm->rtcmtypes.rtcm3_1009.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1009.header.satcount; i++) {
R1009.ident = (unsigned short)ugrab(6);
R1009.L1.indicator = (bool)ugrab(1);
R1009.L1.channel = (short)ugrab(5) - GLONASS_CHANNEL_BASE;
R1009.L1.pseudorange = ugrab(25) * GLONASS_PSEUDORANGE_RESOLUTION;
RANGEDIFF(R1009.L1, 20);
R1009.L1.locktime = (unsigned char)sgrab(7);
}
#undef R1009
break;
case 1010: /* GLONASS Extended RTK, L1 Only */
rtcm->rtcmtypes.rtcm3_1010.header.station_id =
(unsigned short)ugrab(12);
rtcm->rtcmtypes.rtcm3_1010.header.tow = (time_t)ugrab(27);
rtcm->rtcmtypes.rtcm3_1010.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1010.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1010.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1010.header.interval = (unsigned short)ugrab(3);
#define R1010 rtcm->rtcmtypes.rtcm3_1010.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1010.header.satcount; i++) {
R1010.ident = (unsigned short)ugrab(6);
R1010.L1.indicator = (bool)ugrab(1);
R1010.L1.channel = (short)ugrab(5) - GLONASS_CHANNEL_BASE;
R1010.L1.pseudorange = ugrab(25) * GLONASS_PSEUDORANGE_RESOLUTION;
RANGEDIFF(R1010.L1, 20);
R1010.L1.locktime = (unsigned char)sgrab(7);
R1010.L1.ambiguity = (unsigned char)ugrab(7);
R1010.L1.CNR = ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
}
#undef R1010
break;
case 1011: /* GLONASS Basic RTK, L1 & L2 */
rtcm->rtcmtypes.rtcm3_1011.header.station_id =
(unsigned short)ugrab(12);
rtcm->rtcmtypes.rtcm3_1011.header.tow = (time_t)ugrab(27);
rtcm->rtcmtypes.rtcm3_1011.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1011.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1011.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1011.header.interval = (unsigned short)ugrab(3);
#define R1011 rtcm->rtcmtypes.rtcm3_1011.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1011.header.satcount; i++) {
R1011.ident = (unsigned short)ugrab(6);
R1011.L1.indicator = (bool)ugrab(1);
R1011.L1.channel = (short)ugrab(5) - GLONASS_CHANNEL_BASE;
R1011.L1.pseudorange = ugrab(25) * GLONASS_PSEUDORANGE_RESOLUTION;
RANGEDIFF(R1011.L1, 20);
R1011.L1.locktime = (unsigned char)sgrab(7);
R1011.L1.ambiguity = (unsigned char)ugrab(7);
R1011.L1.CNR = ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
R1011.L2.indicator = (bool)ugrab(1);
R1011.L2.channel = (short)ugrab(5) - GLONASS_CHANNEL_BASE;
R1011.L2.pseudorange = ugrab(25) * GLONASS_PSEUDORANGE_RESOLUTION;
RANGEDIFF(R1011.L2, 20);
R1011.L2.locktime = (unsigned char)sgrab(7);
R1011.L2.ambiguity = (unsigned char)ugrab(7);
R1011.L2.CNR = ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
}
#undef R1011
break;
case 1012: /* GLONASS Extended RTK, L1 & L2 */
rtcm->rtcmtypes.rtcm3_1012.header.station_id =
(unsigned short)ugrab(12);
rtcm->rtcmtypes.rtcm3_1012.header.tow = (time_t)ugrab(27);
rtcm->rtcmtypes.rtcm3_1012.header.sync = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1012.header.satcount = (unsigned short)ugrab(5);
rtcm->rtcmtypes.rtcm3_1012.header.smoothing = (bool)ugrab(1);
rtcm->rtcmtypes.rtcm3_1012.header.interval = (unsigned short)ugrab(3);
#define R1012 rtcm->rtcmtypes.rtcm3_1012.rtk_data[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1012.header.satcount; i++) {
unsigned int rangeincr;
R1012.ident = (unsigned short)ugrab(6);
R1012.L1.indicator = (bool)ugrab(1);
R1012.L1.channel = (short)ugrab(5) - GLONASS_CHANNEL_BASE;
R1012.L1.pseudorange = ugrab(25) * GLONASS_PSEUDORANGE_RESOLUTION;
RANGEDIFF(R1012.L1, 20);
R1012.L1.locktime = (unsigned char)ugrab(7);
R1012.L1.ambiguity = (unsigned char)ugrab(7);
R1012.L1.CNR = (unsigned char)ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
R1012.L2.indicator = (bool)ugrab(2);
rangeincr = ugrab(14);
if (rangeincr == GLONASS_INVALID_RANGEINCR)
R1012.L2.pseudorange = 0;
else
R1012.L2.pseudorange = (rangeincr * GLONASS_PSEUDORANGE_RESOLUTION);
RANGEDIFF(R1012.L2, 20);
R1012.L2.locktime = (unsigned char)sgrab(7);
R1012.L2.CNR = (unsigned char)ugrab(8) * CARRIER_NOISE_RATIO_UNITS;
}
#undef R1012
break;
case 1013: /* System Parameters */
rtcm->rtcmtypes.rtcm3_1013.station_id = (unsigned short)ugrab(12);
rtcm->rtcmtypes.rtcm3_1013.mjd = (unsigned short)ugrab(16);
rtcm->rtcmtypes.rtcm3_1013.sod = (unsigned short)ugrab(17);
rtcm->rtcmtypes.rtcm3_1013.ncount = (unsigned long)ugrab(5);
rtcm->rtcmtypes.rtcm3_1013.leapsecs = (unsigned char)ugrab(8);
#define R1013 rtcm->rtcmtypes.rtcm3_1013.announcements[i]
for (i = 0; i < rtcm->rtcmtypes.rtcm3_1013.ncount; i++) {
R1013.id = (unsigned short)ugrab(12);
R1013.sync = (bool)ugrab(1);
R1013.interval = (unsigned short)ugrab(16);
}
#undef R1013
break;
case 1014:
rtcm->rtcmtypes.rtcm3_1014.network_id = (int)ugrab(8);
rtcm->rtcmtypes.rtcm3_1014.subnetwork_id = (int)ugrab(4);
rtcm->rtcmtypes.rtcm3_1014.stationcount = (char)ugrab(5);
rtcm->rtcmtypes.rtcm3_1014.master_id = (int)ugrab(12);
rtcm->rtcmtypes.rtcm3_1014.aux_id = (int)ugrab(12);
rtcm->rtcmtypes.rtcm3_1014.d_lat =
(unsigned short)ugrab(20) * ANTENNA_DEGREE_RESOLUTION;
rtcm->rtcmtypes.rtcm3_1014.d_lon =
(unsigned short)ugrab(21) * ANTENNA_DEGREE_RESOLUTION;
rtcm->rtcmtypes.rtcm3_1014.d_alt = (unsigned short)ugrab(23) / 1000;
break;
case 1029:
rtcm->rtcmtypes.rtcm3_1029.station_id = (unsigned short)ugrab(12);
rtcm->rtcmtypes.rtcm3_1029.mjd = (unsigned short)ugrab(16);
rtcm->rtcmtypes.rtcm3_1029.sod = (unsigned short)ugrab(17);
rtcm->rtcmtypes.rtcm3_1029.len = (unsigned long)ugrab(7);
rtcm->rtcmtypes.rtcm3_1029.unicode_units = (size_t)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1029.text,
buf + 12, rtcm->rtcmtypes.rtcm3_1029.unicode_units);
break;
case 1033: /* see note in header */
rtcm->rtcmtypes.rtcm3_1033.station_id = (unsigned short)ugrab(12);
n = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1033.descriptor, buf + 7, n);
rtcm->rtcmtypes.rtcm3_1033.descriptor[n] = '\0';
bitcount += 8 * n;
rtcm->rtcmtypes.rtcm3_1033.setup_id = ugrab(8);
n2 = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1033.serial, buf + 9 + n, n2);
rtcm->rtcmtypes.rtcm3_1033.serial[n2] = '\0';
bitcount += 8 * n2;
n3 = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1033.receiver, buf + 10+n+n2, n3);
rtcm->rtcmtypes.rtcm3_1033.receiver[n3] = '\0';
bitcount += 8 * n3;
n4 = (unsigned long)ugrab(8);
(void)memcpy(rtcm->rtcmtypes.rtcm3_1033.firmware, buf + 11+n+n2+n3, n3);
rtcm->rtcmtypes.rtcm3_1033.firmware[n4] = '\0';
//bitcount += 8 * n4;
break;
default:
/*
* Leader bytes, message length, and checksum won't be copied.
* The first 12 bits of the copied payload will be the type field.
*/
memcpy(rtcm->rtcmtypes.data, buf+3, rtcm->length);
break;
}
#undef RANGEDIFF
#undef GPS_PSEUDORANGE
#undef sgrab
#undef ugrab
/*@ +evalorder +sefparams +mayaliasunique @*/
}
/* *INDENT-ON* */
/*@ +type @*/
#endif /* RTCM104V3_ENABLE */
|