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
|
/* $Id: italk.c 4661 2008-01-19 22:54:23Z garyemiller $ */
/*
* Driver for the iTalk binary protocol used by FasTrax
*/
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <unistd.h>
#include <time.h>
#include <stdio.h>
#include "gpsd_config.h"
#include "gpsd.h"
#if defined(ITRAX_ENABLE) && defined(BINARY_ENABLE)
#define LITTLE_ENDIAN_PROTOCOL
#include "bits.h"
#include "italk.h"
static gps_mask_t italk_parse(struct gps_device_t *, unsigned char *, size_t);
static gps_mask_t decode_itk_navfix(struct gps_device_t *, unsigned char *, size_t);
static gps_mask_t decode_itk_prnstatus(struct gps_device_t *, unsigned char *, size_t);
static gps_mask_t decode_itk_utcionomodel(struct gps_device_t *, unsigned char *, size_t);
static gps_mask_t decode_itk_navfix(struct gps_device_t *session, unsigned char *buf, size_t len)
{
unsigned int tow;
unsigned short gps_week, flags, cflags, pflags;
gps_mask_t mask = 0;
double epx, epy, epz, evx, evy, evz;
double t;
if (len != 296){
gpsd_report(LOG_PROG, "ITALK: bad NAV_FIX (len %d, should be 296)\n", len);
return -1;
}
flags = getuw(buf, 7 + 4);
cflags = getuw(buf, 7 + 6);
pflags = getuw(buf, 7 + 8);
session->gpsdata.status = STATUS_NO_FIX;
session->gpsdata.fix.mode = MODE_NO_FIX;
mask = ONLINE_SET | MODE_SET | STATUS_SET | CYCLE_START_SET;
/* just bail out if this fix is not marked valid */
if (0 != (pflags & FIX_FLAG_MASK_INVALID) || 0 == (flags & FIXINFO_FLAG_VALID))
return mask;
gps_week = (ushort)getsw(buf, 7 + 82);
tow = getul(buf, 7 + 84);
t = gpstime_to_unix((int)gps_week, tow/1000.0) - session->context->leap_seconds;
session->gpsdata.sentence_time = t;
session->gpsdata.fix.time = t;
mask |= TIME_SET;
epx = (double)(getsl(buf, 7 + 96)/100.0);
epy = (double)(getsl(buf, 7 + 100)/100.0);
epz = (double)(getsl(buf, 7 + 104)/100.0);
evx = (double)(getsl(buf, 7 + 186)/1000.0);
evy = (double)(getsl(buf, 7 + 190)/1000.0);
evz = (double)(getsl(buf, 7 + 194)/1000.0);
ecef_to_wgs84fix(&session->gpsdata, epx, epy, epz, evx, evy, evz);
mask |= LATLON_SET | ALTITUDE_SET | SPEED_SET | TRACK_SET | CLIMB_SET ;
session->gpsdata.fix.eph = (double)(getsl(buf, 7 + 252)/100.0);
session->gpsdata.fix.eps = (double)(getsl(buf, 7 + 254)/100.0);
session->gpsdata.satellites_used = 0xffff ^ getub(buf, 7 + 16);
mask |= USED_SET ;
if (flags & FIX_CONV_DOP_VALID){
session->gpsdata.hdop = (double)(getuw(buf, 7 + 56)/100.0);
session->gpsdata.gdop = (double)(getuw(buf, 7 + 58)/100.0);
session->gpsdata.pdop = (double)(getuw(buf, 7 + 60)/100.0);
session->gpsdata.vdop = (double)(getuw(buf, 7 + 62)/100.0);
session->gpsdata.tdop = (double)(getuw(buf, 7 + 64)/100.0);
mask |= HDOP_SET | GDOP_SET | PDOP_SET | VDOP_SET | TDOP_SET;
}
if ((pflags & FIX_FLAG_MASK_INVALID) == 0 && (flags & FIXINFO_FLAG_VALID) != 0){
if (pflags & FIX_FLAG_3DFIX)
session->gpsdata.fix.mode = MODE_3D;
else
session->gpsdata.fix.mode = MODE_2D;
if (pflags & FIX_FLAG_DGPS_CORRECTION)
session->gpsdata.status = STATUS_DGPS_FIX;
else
session->gpsdata.status = STATUS_FIX;
}
return mask;
}
static gps_mask_t decode_itk_prnstatus(struct gps_device_t *session, unsigned char *buf, size_t len)
{
unsigned int i, tow, nsv, nchan, st;
unsigned short gps_week;
double t;
if (len < 62){
gpsd_report(LOG_PROG, "ITALK: runt PRN_STATUS (len=%d)\n", len);
return ERROR_SET;
}
gps_week = getuw(buf, 7 + 4);
tow = getul(buf, 7 + 6);
t = gpstime_to_unix((int)gps_week, tow/1000.0) - session->context->leap_seconds;
session->gpsdata.sentence_time = session->gpsdata.fix.time = t;
gpsd_zero_satellites(&session->gpsdata);
nchan = (unsigned int)((len - 10 - 52) / 20);
nsv = 0;
for (i = st = 0; i < nchan; i++) {
int off = 7+ 52 + 20 * i;
unsigned short flags;
flags = getuw(buf, off);
session->gpsdata.ss[i] = (int)getuw(buf, off+2)&0xff;
session->gpsdata.PRN[i] = (int)getuw(buf, off+4)&0xff;
session->gpsdata.elevation[i] = (int)getsw(buf, off+6)&0xff;
session->gpsdata.azimuth[i] = (int)getsw(buf, off+8)&0xff;
if (session->gpsdata.PRN[i]){
st++;
if (flags & PRN_FLAG_USE_IN_NAV)
session->gpsdata.used[nsv++] = session->gpsdata.PRN[i];
}
}
session->gpsdata.satellites = (int)st;
session->gpsdata.satellites_used = (int)nsv;
return USED_SET | SATELLITE_SET | TIME_SET;
}
static gps_mask_t decode_itk_utcionomodel(struct gps_device_t *session, unsigned char *buf, size_t len)
{
unsigned int tow;
int leap;
unsigned short gps_week, flags;
double t;
if (len != 64){
gpsd_report(LOG_PROG, "ITALK: bad UTC_IONO_MODEL (len %d, should be 64)\n", len);
return ERROR_SET;
}
flags = getuw(buf, 7);
if (0 == (flags & UTC_IONO_MODEL_UTCVALID))
return 0;
leap = (int)getuw(buf, 7 + 24);
if (session->context->leap_seconds < leap)
session->context->leap_seconds = leap;
gps_week = getuw(buf, 7 + 36);
tow = getul(buf, 7 + 38);
t = gpstime_to_unix((int)gps_week, tow/1000.0) - session->context->leap_seconds;
session->gpsdata.sentence_time = session->gpsdata.fix.time = t;
return TIME_SET;
}
/*@ +charint -usedef -compdef @*/
static bool italk_write(int fd, unsigned char *msg, size_t msglen) {
bool ok;
/* CONSTRUCT THE MESSAGE */
/* we may need to dump the message */
gpsd_report(LOG_IO, "writing italk control type %02x:%s\n",
msg[0], gpsd_hexdump(msg, msglen));
#ifdef ALLOW_RECONFIGURE
ok = (write(fd, msg, msglen) == (ssize_t)msglen);
(void)tcdrain(fd);
#else
ok = 0;
#endif /* ALLOW_RECONFIGURE */
return(ok);
}
/*@ -charint +usedef +compdef @*/
/*@ +charint @*/
static gps_mask_t italk_parse(struct gps_device_t *session, unsigned char *buf, size_t len)
{
unsigned int type;
gps_mask_t mask = 0;
if (len == 0)
return 0;
type = (uint)getub(buf, 4);
/* we may need to dump the raw packet */
gpsd_report(LOG_RAW, "raw italk packet type 0x%02x length %d: %s\n", type, len, gpsd_hexdump(buf, len));
switch (type)
{
case ITALK_NAV_FIX:
gpsd_report(LOG_IO, "iTalk NAV_FIX len %d\n", len);
mask = decode_itk_navfix(session, buf, len);
break;
case ITALK_PRN_STATUS:
gpsd_report(LOG_IO, "iTalk PRN_STATUS len %d\n", len);
mask = decode_itk_prnstatus(session, buf, len);
break;
case ITALK_UTC_IONO_MODEL:
gpsd_report(LOG_IO, "iTalk UTC_IONO_MODEL len %d\n", len);
mask = decode_itk_utcionomodel(session, buf, len);
break;
case ITALK_ACQ_DATA:
gpsd_report(LOG_IO, "iTalk ACQ_DATA len %d\n", len);
break;
case ITALK_TRACK:
gpsd_report(LOG_IO, "iTalk TRACK len %d\n", len);
break;
case ITALK_PSEUDO:
gpsd_report(LOG_IO, "iTalk PSEUDO len %d\n", len);
break;
case ITALK_RAW_ALMANAC:
gpsd_report(LOG_IO, "iTalk RAW_ALMANAC len %d\n", len);
break;
case ITALK_RAW_EPHEMERIS:
gpsd_report(LOG_IO, "iTalk RAW_EPHEMERIS len %d\n", len);
break;
case ITALK_SUBFRAME:
gpsd_report(LOG_IO, "iTalk SUBFRAME len %d\n", len);
break;
case ITALK_BIT_STREAM:
gpsd_report(LOG_IO, "iTalk BIT_STREAM len %d\n", len);
break;
case ITALK_AGC:
case ITALK_SV_HEALTH:
case ITALK_PRN_PRED:
case ITALK_FREQ_PRED:
case ITALK_DBGTRACE:
case ITALK_START:
case ITALK_STOP:
case ITALK_SLEEP:
case ITALK_STATUS:
case ITALK_ITALK_CONF:
case ITALK_SYSINFO:
case ITALK_ITALK_TASK_ROUTE:
case ITALK_PARAM_CTRL:
case ITALK_PARAMS_CHANGED:
case ITALK_START_COMPLETED:
case ITALK_STOP_COMPLETED:
case ITALK_LOG_CMD:
case ITALK_SYSTEM_START:
case ITALK_STOP_SEARCH:
case ITALK_SEARCH:
case ITALK_PRED_SEARCH:
case ITALK_SEARCH_DONE:
case ITALK_TRACK_DROP:
case ITALK_TRACK_STATUS:
case ITALK_HANDOVER_DATA:
case ITALK_CORE_SYNC:
case ITALK_WAAS_RAWDATA:
case ITALK_ASSISTANCE:
case ITALK_PULL_FIX:
case ITALK_MEMCTRL:
case ITALK_STOP_TASK:
gpsd_report(LOG_IO, "iTalk not processing packet: id 0x%02x length %d\n", type, len);
break;
default:
gpsd_report(LOG_IO, "iTalk unknown packet: id 0x%02x length %d\n", type, len);
}
if (mask == ERROR_SET)
mask = 0;
else
(void)snprintf(session->gpsdata.tag, sizeof(session->gpsdata.tag),
"ITK-%02x",type);
return mask | ONLINE_SET;
}
/*@ -charint @*/
static gps_mask_t italk_parse_input(struct gps_device_t *session)
{
gps_mask_t st;
if (session->packet.type == ITALK_PACKET){
st = italk_parse(session, session->packet.outbuffer, session->packet.outbuflen);
session->gpsdata.driver_mode = 1; /* binary */
return st;
#ifdef NMEA_ENABLE
} else if (session->packet.type == NMEA_PACKET) {
st = nmea_parse((char *)session->packet.outbuffer, session);
session->gpsdata.driver_mode = 0; /* NMEA */
return st;
#endif /* NMEA_ENABLE */
} else
return 0;
}
static bool italk_set_mode(struct gps_device_t *session UNUSED,
speed_t speed UNUSED, bool mode UNUSED)
{
/*@ +charint @*/
unsigned char msg[] = {0,};
/* HACK THE MESSAGE */
return italk_write(session->gpsdata.gps_fd, msg, sizeof(msg));
/*@ +charint @*/
}
static bool italk_speed(struct gps_device_t *session, speed_t speed)
{
return italk_set_mode(session, speed, true);
}
static void italk_mode(struct gps_device_t *session, int mode)
{
if (mode == 0) {
(void)gpsd_switch_driver(session, "Generic NMEA");
(void)italk_set_mode(session, session->gpsdata.baudrate, false);
session->gpsdata.driver_mode = 0; /* NMEA */
} else
session->gpsdata.driver_mode = 1; /* binary */
}
#ifdef ALLOW_RECONFIGURE
static void italk_configurator(struct gps_device_t *session, unsigned int seq)
{
if (seq == 0 && session->packet.type == NMEA_PACKET)
(void)italk_set_mode(session, session->gpsdata.baudrate, true);
}
#endif /* ALLOW_RECONFIGURE */
#ifdef __not_yet__
static void italk_ping(struct gps_device_t *session)
/* send a "ping". it may help us detect an itrax more quickly */
{
char *ping = "<?>";
(void)gpsd_write(session, ping, 3);
}
#endif /* __not_yet__ */
/* this is everything we export */
struct gps_type_t italk_binary =
{
.type_name = "iTalk binary", /* full name of type */
.trigger = NULL, /* recognize the type */
.channels = 12, /* consumer-grade GPS */
.probe_wakeup = NULL, /* no wakeup to be done before hunt */
.probe_detect = NULL, /* how to detect at startup time */
.probe_subtype = NULL, /* initialize the device */
#ifdef ALLOW_RECONFIGURE
.configurator = italk_configurator,/* configure the device */
#endif /* ALLOW_RECONFIGURE */
.get_packet = generic_get, /* use generic packet grabber */
.parse_packet = italk_parse_input,/* parse message packets */
.rtcm_writer = pass_rtcm, /* send RTCM data straight */
.speed_switcher = italk_speed, /* we can change baud rates */
.mode_switcher = italk_mode, /* there is a mode switcher */
.rate_switcher = NULL, /* no sample-rate switcher */
.cycle_chars = -1, /* not relevant, no rate switch */
#ifdef ALLOW_RECONFIGURE
.revert = NULL, /* no setting-reversion method */
#endif /* ALLOW_RECONFIGURE */
.wrapup = NULL, /* no close hook */
.cycle = 1, /* updates every second */
};
#endif /* defined(ITRAX_ENABLE) && defined(BINARY_ENABLE) */
#ifdef ANCIENT_ITRAX_ENABLE
/**************************************************************************
*
* The NMEA mode of the iTrax chipset, as used in the FastTrax and others.
*
* As described by v1.31 of the NMEA Protocol Specification for the
* iTrax02 Evaluation Kit, 2003-06-12.
* v1.18 of the manual, 2002-19-6, describes effectively
* the same protocol, but without ZDA.
*
**************************************************************************/
/*
* Enable GGA=0x2000, RMC=0x8000, GSA=0x0002, GSV=0x0001, ZDA=0x0004.
* Disable GLL=0x1000, VTG=0x4000, FOM=0x0020, PPS=0x0010.
* This is 82+75+67+(3*60)+34 = 438 characters
*
* 1200 => at most 1 fix per 4 seconds
* 2400 => at most 1 fix per 2 seconds
* 4800 => at most 1 fix per 1 seconds
* 9600 => at most 2 fixes per second
* 19200 => at most 4 fixes per second
* 57600 => at most 13 fixes per second
* 115200 => at most 26 fixes per second
*
* We'd use FOM, but they don't specify a confidence interval.
*/
#define ITRAX_MODESTRING "$PFST,NMEA,A007,%d\r\n"
static int literal_send(int fd, const char *fmt, ... )
/* ship a raw command to the GPS */
{
int status;
char buf[BUFSIZ];
va_list ap;
va_start(ap, fmt) ;
(void)vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
status = (int)write(fd, buf, strlen(buf));
if (status == (int)strlen(buf)) {
gpsd_report(LOG_IO, "=> GPS: %s\n", buf);
return status;
} else {
gpsd_report(LOG_WARN, "=> GPS: %s FAILED\n", buf);
return -1;
}
}
static void itrax_probe_subtype(struct gps_device_t *session, unsigned int seq)
/* start it reporting */
{
if (seq == 0) {
/* initialize GPS clock with current system time */
struct tm when;
double integral, fractional;
time_t intfixtime;
char buf[31], frac[6];
fractional = modf(timestamp(), &integral);
intfixtime = (time_t)integral;
(void)gmtime_r(&intfixtime, &when);
/* FIXME: so what if my local clock is wrong? */
(void)strftime(buf, sizeof(buf), "$PFST,INITAID,%H%M%S.XX,%d%m%y\r\n", &when);
(void)snprintf(frac, sizeof(frac), "%.2f", fractional);
buf[21] = frac[2]; buf[22] = frac[3];
(void)literal_send(session->gpsdata.gps_fd, buf);
/* maybe this should be considered a reconfiguration? */
(void)literal_send(session->gpsdata.gps_fd, "$PFST,START\r\n");
}
}
#ifdef ALLOW_RECONFIGURE
static void itrax_configurator(struct gps_device_t *session, int seq)
/* set synchronous mode */
{
if (seq == 0) {
(void)literal_send(session->gpsdata.gps_fd, "$PFST,SYNCMODE,1\r\n");
(void)literal_send(session->gpsdata.gps_fd,
ITRAX_MODESTRING, session->gpsdata.baudrate);
}
}
#endif /* ALLOW_RECONFIGURE */
static bool itrax_speed(struct gps_device_t *session, speed_t speed)
/* change the baud rate */
{
#ifdef ALLOW_RECONFIGURE
return literal_send(session->gpsdata.gps_fd, ITRAX_MODESTRING, speed) >= 0;
#else
return false;
#endif /* ALLOW_RECONFIGURE */
}
static bool itrax_rate(struct gps_device_t *session, double rate)
/* change the sample rate of the GPS */
{
#ifdef ALLOW_RECONFIGURE
return literal_send(session->gpsdata.gps_fd, "$PSFT,FIXRATE,%d\r\n", rate) >= 0;
#else
return false;
#endif /* ALLOW_RECONFIGURE */
}
static void itrax_wrap(struct gps_device_t *session)
/* stop navigation, this cuts the power drain */
{
#ifdef ALLOW_RECONFIGURE
(void)literal_send(session->gpsdata.gps_fd, "$PFST,SYNCMODE,0\r\n");
#endif /* ALLOW_RECONFIGURE */
(void)literal_send(session->gpsdata.gps_fd, "$PFST,STOP\r\n");
}
/*@ -redef @*/
static struct gps_type_t itrax = {
.type_name = "iTrax", /* full name of type */
.trigger = "$PFST,OK", /* tells us to switch to Itrax */
.channels = 12, /* consumer-grade GPS */
.probe_wakeup = NULL, /* no wakeup to be done before hunt */
.probe_detect = NULL, /* no probe */
.probe_subtype = itrax_probe_subtype, /* initialize */
#ifdef ALLOW_RECONFIGURE
.configurator = itrax_configurator,/* set synchronous mode */
#endif /* ALLOW_RECONFIGURE */
.get_packet = generic_get, /* how to get a packet */
.parse_packet = nmea_parse_input, /* how to interpret a packet */
.rtcm_writer = NULL, /* iTrax doesn't support DGPS/WAAS/EGNOS */
.speed_switcher= itrax_speed, /* no speed switcher */
.mode_switcher = NULL, /* no mode switcher */
.rate_switcher = itrax_rate, /* there's a sample-rate switcher */
.cycle_chars = 438, /* not relevant, no rate switch */
#ifdef ALLOW_RECONFIGURE
.revert = NULL, /* no setting-reversion method */
#endif /* ALLOW_RECONFIGURE */
.wrapup = itrax_wrap, /* sleep the receiver */
.cycle = 1, /* updates every second */
};
/*@ -redef @*/
#endif /* ITRAX_ENABLE */
|