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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
|
/*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*/
#include <stdio.h>
#include <stdbool.h>
#include "gpsd.h"
#if defined(ONCORE_ENABLE) && defined(BINARY_ENABLE)
#include "bits.h"
/*@ +charint @*/
static char enableEa[] = { 'E', 'a', 1 };
static char enableBb[] = { 'B', 'b', 1 };
static char getfirmware[] = { 'C', 'j' };
/*static char enableEn[] =
{ 'E', 'n', 1, 0, 100, 100, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };*/
/*static char enableAt2[] = { 'A', 't', 2, };*/
static unsigned char pollAs[] =
{ 'A', 's', 0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7f, 0xff,
0xff, 0xff, 0xff
};
static unsigned char pollAt[] = { 'A', 't', 0xff };
static unsigned char pollAy[] = { 'A', 'y', 0xff, 0xff, 0xff, 0xff };
static unsigned char pollBo[] = { 'B', 'o', 0x01 };
static unsigned char pollEn[] = {
'E', 'n', 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};
/*@ -charint @*/
/*
* These routines are specific to this driver
*/
static gps_mask_t oncore_parse_input(struct gps_device_t *);
static gps_mask_t oncore_dispatch(struct gps_device_t *, unsigned char *,
size_t);
static gps_mask_t oncore_msg_navsol(struct gps_device_t *, unsigned char *,
size_t);
static gps_mask_t oncore_msg_utc_offset(struct gps_device_t *,
unsigned char *, size_t);
static gps_mask_t oncore_msg_pps_offset(struct gps_device_t *, unsigned char *,
size_t);
static gps_mask_t oncore_msg_svinfo(struct gps_device_t *, unsigned char *,
size_t);
static gps_mask_t oncore_msg_time_raim(struct gps_device_t *, unsigned char *,
size_t);
static gps_mask_t oncore_msg_firmware(struct gps_device_t *, unsigned char *,
size_t);
/*
* These methods may be called elsewhere in gpsd
*/
static ssize_t oncore_control_send(struct gps_device_t *, char *, size_t);
static void oncore_event_hook(struct gps_device_t *, event_t);
/*
* Decode the navigation solution message
*/
static gps_mask_t
oncore_msg_navsol(struct gps_device_t *session, unsigned char *buf,
size_t data_len)
{
gps_mask_t mask;
unsigned char flags;
double lat, lon, alt;
float speed, track, dop;
unsigned int i, j, st, nsv;
int Bbused;
struct tm unpacked_date;
if (data_len != 76)
return 0;
mask = ONLINE_SET;
gpsd_report(session->context->debug, LOG_DATA,
"oncore NAVSOL - navigation data\n");
flags = (unsigned char)getub(buf, 72);
/*@ -predboolothers @*/
if (flags & 0x20) {
session->gpsdata.status = STATUS_FIX;
session->newdata.mode = MODE_3D;
} else if (flags & 0x10) {
session->gpsdata.status = STATUS_FIX;
session->newdata.mode = MODE_2D;
} else {
gpsd_report(session->context->debug, LOG_WARN,
"oncore NAVSOL no fix - flags 0x%02x\n", flags);
session->newdata.mode = MODE_NO_FIX;
session->gpsdata.status = STATUS_NO_FIX;
}
mask |= MODE_SET;
/*@ +predboolothers @*/
/* Unless we have seen non-zero utc offset data, the time is GPS time
* and not UTC time. Do not use it.
*/
if (session->context->leap_seconds) {
unsigned int nsec;
unpacked_date.tm_mon = (int)getub(buf, 4) - 1;
unpacked_date.tm_mday = (int)getub(buf, 5);
unpacked_date.tm_year = (int)getbeu16(buf, 6) - 1900;
unpacked_date.tm_hour = (int)getub(buf, 8);
unpacked_date.tm_min = (int)getub(buf, 9);
unpacked_date.tm_sec = (int)getub(buf, 10);
unpacked_date.tm_isdst = 0;
nsec = (uint) getbeu32(buf, 11);
/*@ -unrecog */
session->newdata.time = (timestamp_t)timegm(&unpacked_date) + nsec * 1e-9;
/*@ +unrecog */
mask |= TIME_SET;
gpsd_report(session->context->debug, LOG_DATA,
"oncore NAVSOL - time: %04d-%02d-%02d %02d:%02d:%02d.%09d\n",
unpacked_date.tm_year + 1900, unpacked_date.tm_mon + 1,
unpacked_date.tm_mday, unpacked_date.tm_hour,
unpacked_date.tm_min, unpacked_date.tm_sec, nsec);
}
/*@-type@*/
lat = getbes32(buf, 15) / 3600000.0f;
lon = getbes32(buf, 19) / 3600000.0f;
alt = getbes32(buf, 23) / 100.0f;
speed = getbeu16(buf, 31) / 100.0f;
track = getbeu16(buf, 33) / 10.0f;
dop = getbeu16(buf, 35) / 10.0f;
/*@+type@*/
gpsd_report(session->context->debug, LOG_DATA,
"oncore NAVSOL - %lf %lf %.2lfm-%.2lfm | %.2fm/s %.1fdeg dop=%.1f\n",
lat, lon, alt, wgs84_separation(lat, lon), speed, track,
(float)dop);
session->newdata.latitude = lat;
session->newdata.longitude = lon;
session->gpsdata.separation =
wgs84_separation(session->newdata.latitude,
session->newdata.longitude);
session->newdata.altitude = alt - session->gpsdata.separation;
session->newdata.speed = speed;
session->newdata.track = track;
mask |= LATLON_SET | ALTITUDE_SET | SPEED_SET | TRACK_SET;
gpsd_zero_satellites(&session->gpsdata);
/* Merge the satellite information from the Bb message. */
Bbused = 0;
nsv = 0;
for (i = st = 0; i < 8; i++) {
int sv, mode, sn, status;
unsigned int off;
off = 40 + 4 * i;
sv = (int)getub(buf, off);
mode = (int)getub(buf, off + 1);
sn = (int)getub(buf, off + 2);
status = (int)getub(buf, off + 3);
gpsd_report(session->context->debug, LOG_DATA,
"%2d %2d %2d %3d %02x\n", i, sv, mode, sn, status);
if (sn) {
session->gpsdata.PRN[st] = sv;
session->gpsdata.ss[st] = (double)sn;
for (j = 0; (int)j < session->driver.oncore.visible; j++)
if (session->driver.oncore.PRN[j] == sv) {
session->gpsdata.elevation[st] =
session->driver.oncore.elevation[j];
session->gpsdata.azimuth[st] =
session->driver.oncore.azimuth[j];
Bbused |= 1 << j;
break;
}
st++;
/* bit 7 of the status word: sat used for position */
if (status & 0x80)
session->gpsdata.used[nsv++] = sv;
/* bit 2 of the status word: using for time solution */
if (status & 0x02)
mask |= PPSTIME_IS;
/*
* The PPSTIME_IS mask bit exists distinctly from TIME_SET exactly
* so an OnCore running in time-service mode (and other GPS clocks)
* can signal that it's returning time even though no position fixes
* have been available.
*/
}
}
for (j = 0; (int)j < session->driver.oncore.visible; j++)
/*@ -boolops @*/
if (!(Bbused & (1 << j))) {
session->gpsdata.PRN[st] = session->driver.oncore.PRN[j];
session->gpsdata.elevation[st] =
session->driver.oncore.elevation[j];
session->gpsdata.azimuth[st] = session->driver.oncore.azimuth[j];
st++;
}
/*@ +boolops @*/
session->gpsdata.skyview_time = session->newdata.time;
session->gpsdata.satellites_used = (int)nsv;
session->gpsdata.satellites_visible = (int)st;
mask |= SATELLITE_SET | USED_IS;
/* Some messages can only be polled. As they are not so
* important, would be enough to poll e.g. one message per cycle.
*/
(void)oncore_control_send(session, (char *)pollAs, sizeof(pollAs));
(void)oncore_control_send(session, (char *)pollAt, sizeof(pollAt));
(void)oncore_control_send(session, (char *)pollAy, sizeof(pollAy));
(void)oncore_control_send(session, (char *)pollBo, sizeof(pollBo));
(void)oncore_control_send(session, (char *)pollEn, sizeof(pollEn));
gpsd_report(session->context->debug, LOG_DATA,
"NAVSOL: time=%.2f lat=%.2f lon=%.2f alt=%.2f speed=%.2f track=%.2f mode=%d status=%d visible=%d used=%d\n",
session->newdata.time, session->newdata.latitude,
session->newdata.longitude, session->newdata.altitude,
session->newdata.speed, session->newdata.track,
session->newdata.mode, session->gpsdata.status,
session->gpsdata.satellites_used,
session->gpsdata.satellites_visible);
return mask;
}
/**
* GPS Leap Seconds = UTC offset
*/
static gps_mask_t
oncore_msg_utc_offset(struct gps_device_t *session, unsigned char *buf,
size_t data_len)
{
int utc_offset;
if (data_len != 8)
return 0;
gpsd_report(session->context->debug, LOG_DATA,
"oncore UTCTIME - leap seconds\n");
utc_offset = (int)getub(buf, 4);
if (utc_offset == 0)
return 0; /* that part of almanac not received yet */
session->context->leap_seconds = utc_offset;
session->context->valid |= LEAP_SECOND_VALID;
return 0; /* no flag for leap seconds update */
}
/**
* PPS offset
*/
static gps_mask_t
oncore_msg_pps_offset(struct gps_device_t *session, unsigned char *buf,
size_t data_len)
{
int pps_offset_ns;
if (data_len != 11)
return 0;
gpsd_report(session->context->debug, LOG_DATA, "oncore PPS offset\n");
pps_offset_ns = (int)getbes32(buf, 4);
session->driver.oncore.pps_offset_ns = pps_offset_ns;
return 0;
}
/**
* GPS Satellite Info
*/
static gps_mask_t
oncore_msg_svinfo(struct gps_device_t *session, unsigned char *buf,
size_t data_len)
{
unsigned int i, nchan;
int j;
if (data_len != 92)
return 0;
gpsd_report(session->context->debug, LOG_DATA,
"oncore SVINFO - satellite data\n");
nchan = (unsigned int)getub(buf, 4);
gpsd_report(session->context->debug, LOG_DATA,
"oncore SVINFO - %d satellites:\n", nchan);
/* Then we clamp the value to not read outside the table. */
if (nchan > 12)
nchan = 12;
session->driver.oncore.visible = (int)nchan;
for (i = 0; i < nchan; i++) {
/* get info for one channel/satellite */
unsigned int off = 5 + 7 * i;
int sv = (int)getub(buf, off);
int el = (int)getub(buf, off + 3);
int az = (int)getbeu16(buf, off + 4);
gpsd_report(session->context->debug, LOG_DATA,
"%2d %2d %2d %3d\n", i, sv, el, az);
/* Store for use when Ea messages come. */
session->driver.oncore.PRN[i] = sv;
session->driver.oncore.elevation[i] = el;
session->driver.oncore.azimuth[i] = az;
/* If it has an entry in the satellite list, update it! */
for (j = 0; j < session->gpsdata.satellites_visible; j++)
if (session->gpsdata.PRN[j] == sv) {
session->gpsdata.elevation[j] = el;
session->gpsdata.azimuth[j] = az;
}
}
gpsd_report(session->context->debug, LOG_DATA,
"SVINFO: mask={SATELLITE}\n");
return SATELLITE_SET;
}
/**
* GPS Time RAIM
*/
static gps_mask_t
oncore_msg_time_raim(struct gps_device_t *session UNUSED,
unsigned char *buf UNUSED, size_t data_len UNUSED)
{
int sawtooth_ns;
if (data_len != 69)
return 0;
sawtooth_ns = (int)getub(buf, 25);
gpsd_report(session->context->debug, LOG_DATA,
"oncore PPS sawtooth: %d\n",sawtooth_ns);
/* session->driver.oncore.traim_sawtooth_ns = sawtooth_ns; */
return 0;
}
/**
* GPS Firmware
*/
static gps_mask_t
oncore_msg_firmware(struct gps_device_t *session UNUSED,
unsigned char *buf UNUSED, size_t data_len UNUSED)
{
return 0;
}
#define ONCTYPE(id2,id3) ((((unsigned int)id2)<<8)|(id3))
/**
* Parse the data from the device
*/
/*@ +charint @*/
gps_mask_t oncore_dispatch(struct gps_device_t * session, unsigned char *buf,
size_t len)
{
unsigned int type;
if (len == 0)
return 0;
type = ONCTYPE(buf[2], buf[3]);
/* we may need to dump the raw packet */
gpsd_report(session->context->debug, LOG_RAW,
"raw Oncore packet type 0x%04x\n", type);
(void)snprintf(session->gpsdata.tag, sizeof(session->gpsdata.tag),
"MOT-%c%c", type >> 8, type & 0xff);
session->cycle_end_reliable = true;
switch (type) {
case ONCTYPE('B', 'b'):
return oncore_msg_svinfo(session, buf, len);
case ONCTYPE('E', 'a'):
return oncore_msg_navsol(session, buf, len) | (CLEAR_IS | REPORT_IS);
case ONCTYPE('E', 'n'):
return oncore_msg_time_raim(session, buf, len);
case ONCTYPE('C', 'j'):
return oncore_msg_firmware(session, buf, len);
case ONCTYPE('B', 'o'):
return oncore_msg_utc_offset(session, buf, len);
case ONCTYPE('A', 's'):
return 0; /* position hold mode */
case ONCTYPE('A', 't'):
return 0; /* position hold position */
case ONCTYPE('A', 'y'):
return oncore_msg_pps_offset(session, buf, len);
default:
/* FIX-ME: This gets noisy in a hurry. Change once your driver works */
gpsd_report(session->context->debug, LOG_WARN,
"unknown packet id @@%c%c length %zd\n",
type >> 8, type & 0xff, len);
return 0;
}
}
/*@ -charint @*/
/**********************************************************
*
* Externally called routines below here
*
**********************************************************/
/**
* Write data to the device, doing any required padding or checksumming
*/
/*@ +charint -usedef -compdef @*/
static ssize_t oncore_control_send(struct gps_device_t *session,
char *msg, size_t msglen)
{
size_t i;
char checksum = 0;
session->msgbuf[0] = '@';
session->msgbuf[1] = '@';
for (i = 0; i < msglen; i++) {
checksum ^= session->msgbuf[i + 2] = msg[i];
}
session->msgbuf[msglen + 2] = checksum;
session->msgbuf[msglen + 3] = '\r';
session->msgbuf[msglen + 4] = '\n';
session->msgbuflen = msglen + 5;
gpsd_report(session->context->debug, LOG_PROG,
"writing oncore control type %c%c\n", msg[0], msg[1]);
return gpsd_write(session, session->msgbuf, session->msgbuflen);
}
/*@ -charint +usedef +compdef @*/
static void oncore_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly)
return;
/*
* Some oncore VP variants that have not been used after long
* power-down will be silent on startup. Provoke
* identification by requesting the firmware version.
*/
if (event == event_wakeup)
(void)oncore_control_send(session, getfirmware, sizeof(getfirmware));
/*
* FIX-ME: It might not be necessary to call this on reactivate.
* Experiment to see if the holds its settings through a close.
*/
if (event == event_identified || event == event_reactivate) {
(void)oncore_control_send(session, enableEa, sizeof(enableEa));
(void)oncore_control_send(session, enableBb, sizeof(enableBb));
/*(void)oncore_control_send(session, enableEn, sizeof(enableEn)); */
/*(void)oncore_control_send(session,enableAt2,sizeof(enableAt2)); */
/*(void)oncore_control_send(session,pollAs,sizeof(pollAs)); */
(void)oncore_control_send(session, (char*)pollBo, sizeof(pollBo));
}
}
#ifdef TIMEHINT_ENABLE
static double oncore_time_offset(struct gps_device_t *session UNUSED)
{
/*
* Only one sentence (NAVSOL) ships time. 0.175 seems best at
* 9600 for UT+, not sure what the fudge should be at other baud
* rates or for other models.
*/
return 0.175;
}
#endif /* TIMEHINT_ENABLE */
static gps_mask_t oncore_parse_input(struct gps_device_t *session)
{
if (session->packet.type == ONCORE_PACKET) {
return oncore_dispatch(session, session->packet.outbuffer,
session->packet.outbuflen);
#ifdef NMEA_ENABLE
} else if (session->packet.type == NMEA_PACKET) {
return nmea_parse((char *)session->packet.outbuffer, session);
#endif /* NMEA_ENABLE */
} else
return 0;
}
/* This is everything we export */
/* *INDENT-OFF* */
const struct gps_type_t driver_oncore = {
.type_name = "Motorola Oncore", /* Full name of type */
.packet_type = ONCORE_PACKET, /* numeric packet type */
.flags = DRIVER_STICKY, /* remember this */
.trigger = NULL, /* identifying response */
.channels = 12, /* device channel count */
.probe_detect = NULL, /* no probe */
.get_packet = generic_get, /* packet getter */
.parse_packet = oncore_parse_input, /* packet parser */
.rtcm_writer = gpsd_write, /* device accepts RTCM */
.event_hook = oncore_event_hook, /* lifetime event hook */
#ifdef RECONFIGURE_ENABLE
.speed_switcher = NULL, /* no speed setter */
.mode_switcher = NULL, /* no mode setter */
.rate_switcher = NULL, /* no speed setter */
.min_cycle = 1, /* 1Hz */
#endif /* RECONFIGURE_ENABLE */
#ifdef CONTROLSEND_ENABLE
/* Control string sender - should provide checksum and headers/trailer */
.control_send = oncore_control_send, /* to send control strings */
#endif /* CONTROLSEND_ENABLE */
#ifdef TIMEHINT_ENABLE
.time_offset = oncore_time_offset, /* NTP offset array */
#endif /* TIMEHINT_ENABLE */
};
/* *INDENT-ON* */
#endif /* defined(ONCORE_ENABLE) && defined(BINARY_ENABLE) */
|