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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
|
/*
* This file is Copyright 2010 by the GPSD project
* SPDX-License-Identifier: BSD-2-clause
*/
#include "../include/gpsd_config.h" // must be before all includes
#include <assert.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "../include/bits.h" // for getbeu16(), to extract big-endian words
#include "../include/compiler.h" // for FALLTHROUGH
#include "../include/gpsd.h"
#include "../include/strfuncs.h"
// This handles only bad, comment, and maybe NMEA packets.
gps_mask_t generic_parse_input(struct gps_device_t *session)
{
if (BAD_PACKET == session->lexer.type ||
COMMENT_PACKET == session->lexer.type) {
// ignore bad packets and comment packets
return 0;
}
if (NMEA_PACKET == session->lexer.type) {
const struct gps_type_t **dp;
gps_mask_t st = 0;
char *sentence = (char *)session->lexer.outbuffer;
if ('\n' != sentence[strnlen(sentence,
sizeof(session->lexer.outbuffer)) - 1]) {
GPSD_LOG(LOG_IO, &session->context->errout,
"<= GPS: %s\n", sentence);
} else {
GPSD_LOG(LOG_IO, &session->context->errout,
"<= GPS: %s", sentence);
}
if (0 == (st=nmea_parse(sentence, session))) {
GPSD_LOG(LOG_WARN, &session->context->errout,
"unknown sentence: \"%s\"\n", sentence);
}
for (dp = gpsd_drivers; *dp; dp++) {
char *trigger = (*dp)->trigger;
if (NULL != trigger &&
str_starts_with(sentence, trigger)) {
GPSD_LOG(LOG_PROG, &session->context->errout,
"found trigger string %s.\n", trigger);
if (*dp != session->device_type) {
(void)gpsd_switch_driver(session, (*dp)->type_name);
if (NULL != session->device_type &&
NULL != session->device_type->event_hook) {
session->device_type->event_hook(session,
EVENT_TRIGGERMATCH);
st |= DEVICEID_SET;
}
}
}
}
return st;
}
GPSD_LOG(LOG_SHOUT, &session->context->errout,
"packet type %d fell through (should never happen): %s.\n",
session->lexer.type, gpsd_prettydump(session));
return 0;
}
/**************************************************************************
*
* Generic driver -- make no assumptions about the device type
*
**************************************************************************/
// *INDENT-OFF*
const struct gps_type_t driver_unknown = {
.type_name = "Unknown", // full name of type
.packet_type = COMMENT_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // no flags set
.trigger = NULL, // it's the default
.channels = 12, // consumer-grade GPS
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // use generic packet getter
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = NULL, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
/**************************************************************************
*
* NMEA 0183
*
* This is separate from the 'unknown' driver because we don't want to
* ship NMEA subtype probe strings to a device until we've seen at
* least one NMEA packet. This avoids spamming devices that might
* actually be USB modems or other things in USB device class FF that
* just happen to have one of 'our' adaptor chips in front of them.
*
**************************************************************************/
static void nmea_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
/*
* This is where we try to tickle NMEA devices into revealing their
* inner natures.
*/
if (event == EVENT_CONFIGURE) {
/*
* The reason for splitting these probes up by packet sequence
* number, interleaving them with the first few packet receives,
* is because many generic-NMEA devices get confused if you send
* too much at them in one go.
*
* A fast response to an early probe will change drivers so the
* later ones won't be sent at all. Thus, for best overall
* performance, order these to probe for the most popular types
* soonest.
*
* Note: don't make the trigger strings identical to the probe,
* because some NMEA devices (notably SiRFs) will just echo
* unknown strings right back at you. A useful dodge is to append
* a comma to the trigger, because that won't be in the response
* unless there is actual following data.
*/
switch (session->lexer.counter) {
case 0:
// probe for Garmin serial GPS -- expect $PGRMC followed by data
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for Garmin NMEA\n");
(void)nmea_send(session, "$PGRMCE");
break;
#ifdef SIRF_ENABLE
case 1:
/*
* We used to try to probe for SiRF by issuing
* "$PSRF105,1" and expecting "$Ack Input105.". But it
* turns out this only works for SiRF-IIs; SiRF-I and
* SiRF-III don't respond. Sadly, the MID132 binary
* request for firmware version is ignored in NMEA mode.
* Thus the only reliable probe is to try to flip the SiRF
* into binary mode, cluing in the library to revert it on
* close.
*
* SiRFs dominate the consumer-grade GPS-mouse market, so
* we used to put this test first. Unfortunately this
* causes problems for gpsctl, as it cannot select the
* NMEA driver without switching the device back to binary
* mode! Fix this if we ever find a nondisruptive probe
* string.
*/
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for SiRF\n");
(void)nmea_send(session,
"$PSRF100,0,%d,%d,%d,0",
session->gpsdata.dev.baudrate,
9 - session->gpsdata.dev.stopbits,
session->gpsdata.dev.stopbits);
break;
#endif // SIRF_ENABLE
case 2:
// probe for the FV-18 -- expect $PFEC,GPint followed by data
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for FV-18\n");
(void)nmea_send(session, "$PFEC,GPint");
break;
case 3:
// probe for the Trimble Copernicus
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for Trimble Copernicus\n");
(void)nmea_send(session, "$PTNLSNM,0139,01");
break;
#ifdef EVERMORE_ENABLE
case 4:
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for Evermore\n");
// FIXME: not passive compatible
/* Enable checksum and GGA(1s), GLL(0s), GSA(1s), GSV(1s),
* RMC(1s), VTG(0s), PEMT101(0s)
* EverMore will reply with: \x10\x02\x04\x38\x8E\xC6\x10\x03 */
(void)gpsd_write(session,
"\x10\x02\x12\x8E\x7F\x01\x01\x00\x01\x01\x01"
"\x00\x00\x00\x00\x00\x00\x00\x00\x13\x10\x03",
22);
break;
#endif // EVERMORE_ENABLE
#ifdef GPSCLOCK_ENABLE
case 5:
/* probe for Furuno Electric GH-79L4-N (GPSClock);
* expect $PFEC,GPssd */
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for GPSClock\n");
(void)nmea_send(session, "$PFEC,GPsrq");
break;
#endif // GPSCLOCK_ENABLE
case 6:
// probe for Ashtech -- expect $PASHR,RID
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for Ashtech\n");
(void)nmea_send(session, "$PASHQ,RID");
break;
case 7:
// probe for UBX
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for UBX\n");
// query port configuration UBX-MON-VER
(void)ubx_write(session, 0x0a, 0x04, NULL, 0);
// query port configuration UBX-CFG-PRT
(void)ubx_write(session, 0x06, 0x00, NULL, 0);
break;
case 8:
// probe for MTK-3301 -- expect $PMTK705
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for MediaTek\n");
(void)nmea_send(session, "$PMTK605");
break;
#ifdef GREIS_ENABLE
case 9:
// probe for Javad GREIS -- expect reply with JAVAD
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for Javad GREIS\n");
// TODO: confirm this actually gets JAVAD response
(void)nmea_send(session, "print,/par/rcv/vendor");
break;
#endif // GREIS_ENABLE
case 10:
// probe for ALLYSTAR
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for ALLYSTAR\n");
// query version MON-VER
(void)ally_write(session, 0x0a, 0x04, NULL, 0);
break;
case 11:
// probe for CASIC
GPSD_LOG(LOG_PROG, &session->context->errout,
"=> Probing for CASIC\n");
// query version MON-VER
(void)casic_write(session, 0x0a, 0x04, NULL, 0);
break;
default:
break;
}
}
}
// *INDENT-OFF*
const struct gps_type_t driver_nmea0183 = {
.type_name = "NMEA0183", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // remember this
.trigger = NULL, // it's the default
.channels = 12, // consumer-grade GPS
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // use generic packet getter
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = nmea_event_hook, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // maybe switchable if it was a SiRF
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#if defined(GARMIN_ENABLE)
/**************************************************************************
*
* Garmin NMEA
*
**************************************************************************/
// only does anything in one direction, going to Garmin binary driver
static void garmin_mode_switch(struct gps_device_t *session, int mode)
{
struct timespec delay;
if (mode == MODE_BINARY) {
(void)nmea_send(session, "$PGRMC1,1,2,1,,,,2,W,N");
(void)nmea_send(session, "$PGRMI,,,,,,,R");
// wait 333 uSec, standard Garmin settling time
delay.tv_sec = 0;
delay.tv_nsec = 333000L;
nanosleep(&delay, NULL);
}
}
static void garmin_nmea_event_hook(struct gps_device_t *session,
event_t event)
{
if (session->context->readonly) {
return;
}
if (event == EVENT_DRIVER_SWITCH) {
// forces a reconfigure as the following packets come in
session->lexer.counter = 0;
}
if (session->context->passive) {
return;
}
if (event == EVENT_CONFIGURE) {
/*
* And here's that reconfigure. It's split up like this because
* receivers like the Garmin GPS-10 don't handle having having a lot of
* probes shoved at them very well.
*/
switch (session->lexer.counter) {
case 0:
/* reset some config, AutoFix, WGS84, PPS
* Set the PPS pulse length to 40ms which leaves the Garmin 18-5hz
* with a 160ms low state.
* NOTE: new PPS only takes effect after next power cycle
*/
(void)nmea_send(session, "$PGRMC,A,,100,,,,,,A,,1,2,1,30");
break;
case 1:
// once a sec, no averaging, NMEA 2.3, WAAS
(void)nmea_send(session, "$PGRMC1,1,1,1,,,,2,W,N");
break;
case 2:
// get some more config info
(void)nmea_send(session, "$PGRMC1E");
break;
case 3:
// turn off all output except GGA
(void)nmea_send(session, "$PGRMO,,2");
(void)nmea_send(session, "$PGRMO,GPGGA,1");
break;
case 4:
// enable GPGGA, GPGSA, GPGSV, GPRMC on Garmin serial GPS
(void)nmea_send(session, "$PGRMO,GPGSA,1");
break;
case 5:
(void)nmea_send(session, "$PGRMO,GPGSV,1");
break;
case 6:
(void)nmea_send(session, "$PGRMO,GPRMC,1");
break;
case 7:
(void)nmea_send(session, "$PGRMO,PGRME,1");
break;
}
}
}
// *INDENT-OFF*
const struct gps_type_t driver_garmin = {
.type_name = "Garmin NMEA", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PGRMC,", // Garmin private
.channels = 12, // not used by this driver
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // use generic packet getter
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = NULL, // some do, some don't, skip for now
.init_query = NULL, // non-perturbing initial query
.event_hook = garmin_nmea_event_hook, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = garmin_mode_switch, // mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#endif // GARMIN_ENABLE
/**************************************************************************
*
* Inertial Sense
* https://inertialsense.com/
* Note that many of the IS "NMEA" messages are too long, non-standard,
* or just broken.
*
**************************************************************************/
static void is_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
if (event == EVENT_WAKEUP) {
/* probe for device, which is quiet by default
* $INFO is not a valid NMEA message type, public or proprietary */
(void)nmea_send(session, "$INFO");
}
if (session->context->passive) {
return;
}
if (event == EVENT_IDENTIFIED) {
// enable some "NMEA", at 5Hz
(void)nmea_send(session, "$ASCE,0,6,1,7,1,8,1,10,1,11,1,15,1");
}
}
// *INDENT-OFF*
const struct gps_type_t driver_is = {
.type_name = "InertialSense", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = NULL,
.channels = 24, // not used, unknown channels
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = is_event_hook, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
/**************************************************************************
*
* Ashtech (then Thales, now Magellan Professional) Receivers
*
**************************************************************************/
static void ashtech_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
if (event == EVENT_WAKEUP) {
(void)nmea_send(session, "$PASHQ,RID");
}
if (session->context->passive) {
return;
}
if (event == EVENT_IDENTIFIED) {
// turn WAAS on. can't hurt...
(void)nmea_send(session, "$PASHS,WAS,ON");
// reset to known output state
(void)nmea_send(session, "$PASHS,NME,ALL,A,OFF");
// then turn on some useful sentences
#ifdef __future__
// we could parse these, but they're oversize so they get dropped
(void)nmea_send(session, "$PASHS,NME,POS,A,ON");
(void)nmea_send(session, "$PASHS,NME,SAT,A,ON");
#else
(void)nmea_send(session, "$PASHS,NME,GGA,A,ON");
(void)nmea_send(session, "$PASHS,NME,GSA,A,ON");
(void)nmea_send(session, "$PASHS,NME,GSV,A,ON");
(void)nmea_send(session, "$PASHS,NME,RMC,A,ON");
#endif
(void)nmea_send(session, "$PASHS,NME,ZDA,A,ON");
}
}
const struct gps_type_t driver_ashtech = {
.type_name = "Ashtech", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PASHR,RID,", // Ashtech receivers respond thus
.channels = 24, // not used, GG24 has 24 channels
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = ashtech_event_hook, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#ifdef FV18_ENABLE
/**************************************************************************
*
* FV18 -- uses 2 stop bits, needs to be told to send GSAs
*
**************************************************************************/
static void fv18_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
/*
* Tell an FV18 to send GSAs so we'll know if 3D is accurate.
* Suppress GLL and VTG. Enable ZDA so dates will be accurate for replay.
* It's possible we might not need to redo this on event_reactivate,
* but doing so is safe and cheap.
*/
if (event == EVENT_IDENTIFIED ||
event == EVENT_REACTIVATE) {
(void)nmea_send(session,
"$PFEC,GPint,GSA01,DTM00,ZDA01,RMC01,GLL00,VTG00,GSV05");
}
}
// *INDENT-OFF*
const struct gps_type_t driver_fv18 = {
.type_name = "San Jose Navigation FV18", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PFEC,GPint,", // FV18s should echo the probe
.channels = 12, // not used by this driver
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = fv18_event_hook, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#endif // FV18_ENABLE
#ifdef GPSCLOCK_ENABLE
/**************************************************************************
*
* Furuno Electric GPSClock (GH-79L4)
*
**************************************************************************/
/*
* Based on http://www.tecsys.de/fileadmin/user_upload/pdf/gh79_1an_intant.pdf
*/
// *INDENT-OFF*
const struct gps_type_t driver_gpsclock = {
.type_name = "Furuno Electric GH-79L4", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PFEC,GPssd", // GPSClock should return this
.channels = 12, // not used by this driver
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // no lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // sample rate is fixed
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#endif // GPSCLOCK_ENABLE
#ifdef TRIPMATE_ENABLE
/**************************************************************************
*
* TripMate -- extended NMEA, gets faster fix when primed with lat/long/time
*
**************************************************************************/
/*
* Some technical FAQs on the TripMate:
* http://vancouver-webpages.com/pub/peter/tripmate.faq
* http://www.asahi-net.or.jp/~KN6Y-GTU/tripmate/trmfaqe.html
* The TripMate was discontinued sometime before November 1998
* and was replaced by the Zodiac EarthMate.
*/
static void tripmate_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
// TripMate requires this response to the ASTRAL it sends at boot time
if (event == EVENT_IDENTIFIED) {
(void)nmea_send(session, "$IIGPQ,ASTRAL");
}
// stop it sending PRWIZCH
if (event == EVENT_IDENTIFIED ||
event == EVENT_REACTIVATE) {
(void)nmea_send(session, "$PRWIILOG,ZCH,V,,");
}
}
// *INDENT-OFF*
static const struct gps_type_t driver_tripmate = {
.type_name = "Delorme TripMate", // full name of type
.packet_type = NMEA_PACKET, // lexer packet type
.flags = DRIVER_STICKY, // no rollover or other flags
.trigger ="ASTRAL", // tells us to switch
.channels = 12, // consumer-grade GPS
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // send RTCM data straight
.init_query = NULL, // non-perturbing query
.event_hook = tripmate_event_hook, // lifetime event handler
.speed_switcher= NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#endif // TRIPMATE_ENABLE
#ifdef EARTHMATE_ENABLE
/**************************************************************************
*
* Zodiac EarthMate textual mode
*
* Note: This is the pre-2003 version using Zodiac binary protocol.
* There is a good HOWTO at <http://www.hamhud.net/ka9mva/earthmate.htm>.
* It has been replaced with a design that uses a SiRF chipset.
*
**************************************************************************/
static void earthmate_event_hook(struct gps_device_t *session, event_t event)
{
struct timespec delay;
if (session->context->readonly) {
return;
}
if (event == EVENT_TRIGGERMATCH) {
(void)gpsd_write(session, "EARTHA\r\n", 8);
// wait 10,000 uSec
delay.tv_sec = 0;
delay.tv_nsec = 10000000L;
nanosleep(&delay, NULL);
(void)gpsd_switch_driver(session, "Zodiac");
}
}
// *INDENT-OFF*
static const struct gps_type_t driver_earthmate = {
.type_name = "Pre-2003 Delorme EarthMate",
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // no rollover or other flags
.trigger = "EARTHA", // Earthmate trigger string
.channels = 12, // not used by NMEA parser
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = NULL, // don't send RTCM data
.init_query = NULL, // non-perturbing query
.event_hook = earthmate_event_hook, // lifetime event handler
.speed_switcher= NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // never actually used.
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#endif // EARTHMATE_ENABLE
#ifdef TNT_ENABLE
/**************************************************************************
* True North Technologies - Revolution 2X Digital compass
*
* More info: http://www.tntc.com/
*
* This is a digital compass which uses magnetometers to measure the
* strength of the earth's magnetic field. Based on these measurements
* it provides a compass heading using NMEA formatted output strings.
* This is useful to supplement the heading provided by another GPS
* unit. A GPS heading is unreliable at slow speed or no speed.
*
**************************************************************************/
// send a control string in TNT native formal
static ssize_t tnt_control_send(struct gps_device_t *session,
char *msg, size_t len UNUSED)
{
ssize_t status;
unsigned char sum = '\0';
char c, *p = msg;
if ('@' == *p) {
p++;
}
#ifdef __UNUSED__
else {
GPSD_LOG(LOG_ERROR, &session->context->errout,
"Bad TNT sentence: '%s'\n", msg);
}
#endif // __UNUSED__
while ('\0' != (c = *p)) {
sum ^= c;
p++;
}
(void)snprintf(p, 6, "*%02X\r\n", (unsigned int)sum);
status = gpsd_write(session, msg, strlen(msg));
return status;
}
// printf(3)-like TNT command generator
static bool tnt_send(struct gps_device_t *session, const char *fmt, ...)
{
char buf[BUFSIZ];
va_list ap;
ssize_t sent;
va_start(ap, fmt);
(void)vsnprintf(buf, sizeof(buf) - 5, fmt, ap);
va_end(ap);
sent = tnt_control_send(session, buf, strnlen(buf, sizeof(buf)));
if ((ssize_t)strnlen(buf, sizeof(buf)) == sent) {
GPSD_LOG(LOG_IO, &session->context->errout,
"=> GPS: %s\n", buf);
return true;
} // else
GPSD_LOG(LOG_WARN, &session->context->errout,
"=> GPS: %s FAILED\n", buf);
return false;
}
static bool tnt_speed(struct gps_device_t *session,
speed_t speed, char parity UNUSED, int stopbits UNUSED)
{
/*
* Baud rate change followed by device reset.
* See page 40 of Technical Guide 1555-B. We need:
* 2400 -> 1, 4800 -> 2, 9600 -> 3, 19200 -> 4, 38400 -> 5
*/
unsigned int val = speed / 2400u; // 2400->1, 4800->2, 9600->4, 19200->8...
unsigned int i = 0;
// fast way to compute log2(val)
while (1 < (val >> i)) {
++i;
}
return tnt_send(session, "@B6=%d", i + 1) &&
tnt_send(session, "@F28.6=1");
}
// TNT lifetime event hook
static void tnt_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
if (event == EVENT_WAKEUP) {
(void)tnt_send(session, "@F0.3=1"); // set run mode
(void)tnt_send(session, "@F2.2=1"); // report in degrees
}
}
// *INDENT-OFF*
const struct gps_type_t driver_trueNorth = {
.type_name = "True North", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PTNTHTM", // their proprietary sentence
.channels = 0, // not an actual GPS at all
.probe_detect = NULL, // no probe in run mode
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = NULL, // Don't send
.init_query = NULL, // non-perturbing initial query
.event_hook = tnt_event_hook, // lifetime event handler
.speed_switcher = tnt_speed, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no wrapup
.min_cycle.tv_sec = 0, // not relevant, no rate switch
.min_cycle.tv_nsec = 500000000, // not relevant, no rate switch
.control_send = tnt_control_send, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
#endif
#ifdef FURY_ENABLE
/**************************************************************************
*
* Jackson Labs Fury, a high-precision laboratory clock
*
* Will also support other Jackon Labs boards, including the Firefly.
*
* Note: you must either build with fixed_port_speed=115200 or tweak the
* speed on the port to 115200 before running. The device's default mode
* does not stream output, so our hunt loop will simply time out otherwise.
*
**************************************************************************/
static bool fury_rate_switcher(struct gps_device_t *session, double rate)
{
char buf[78];
double inverted;
// rate is a frequency, but the command takes interval in # of seconds
if (rate == 0.0) {
inverted = 0.0;
} else {
inverted = 1.0/rate;
}
if (inverted > 256) {
return false;
}
(void)snprintf(buf, sizeof(buf), "GPS:GPGGA %d\r\n", (int)inverted);
(void)gpsd_write(session, buf, strnlen(buf, sizeof(buf)));
return true;
}
static void fury_event_hook(struct gps_device_t *session, event_t event)
{
if (event == EVENT_WAKEUP &&
gpsd_get_speed(session) == 115200) {
(void)fury_rate_switcher(session, 1.0);
} else if (event == EVENT_DEACTIVATE) {
(void)fury_rate_switcher(session, 0.0);
}
}
// *INDENT-OFF*
static const struct gps_type_t driver_fury = {
.type_name = "Jackson Labs Fury", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // no rollover or other flags
.trigger = NULL, // detect their main sentence
.channels = 0, // not an actual GPS at all
.probe_detect = NULL,
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = NULL, // Don't send
.init_query = NULL, // non-perturbing initial query
.event_hook = fury_event_hook,
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = fury_rate_switcher,
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
#endif // FURY_ENABLE
/**************************************************************************
*
* RTCM-104 (v2), used for broadcasting DGPS corrections and by DGPS radios
*
**************************************************************************/
static gps_mask_t rtcm104v2_analyze(struct gps_device_t *session)
{
rtcm2_unpack(session, &session->gpsdata.rtcm2,
(char *)session->lexer.isgps.buf);
session->cycle_end_reliable = true;
return RTCM2_SET;
}
// *INDENT-OFF*
static const struct gps_type_t driver_rtcm104v2 = {
.type_name = "RTCM104V2", // full name of type
.packet_type = RTCM2_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // no rollover or other flags
.trigger = NULL, // no recognition string
.channels = 0, // not used
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = rtcm104v2_analyze, //
.rtcm_writer = NULL, // don't send RTCM data
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // no event_hook
.speed_switcher= NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
// cycle not relevant, no rate switch, but can generate log noise
.min_cycle.tv_sec = 10, // Some NTRIP servers are bursty
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
/**************************************************************************
*
* RTCM-104 (v3), used for broadcasting DGPS corrections and by DGPS radios
*
**************************************************************************/
static gps_mask_t rtcm104v3_analyze(struct gps_device_t *session)
{
uint16_t type = getbeu16(session->lexer.outbuffer, 3) >> 4;
GPSD_LOG(LOG_RAW, &session->context->errout, "RTCM 3.x packet %d\n", type);
rtcm3_unpack(session->context,
&session->gpsdata.rtcm3,
session->lexer.outbuffer);
session->cycle_end_reliable = true;
return RTCM3_SET;
}
// *INDENT-OFF*
static const struct gps_type_t driver_rtcm104v3 = {
.type_name = "RTCM104V3", // full name of type
.packet_type = RTCM3_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // no rollover or other flags
.trigger = NULL, // no recognition string
.channels = 0, // not used
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = rtcm104v3_analyze, //
.rtcm_writer = NULL, // don't send RTCM data
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // no event hook
.speed_switcher= NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
// cycle not relevant, no rate switch, but can generate log noise
.min_cycle.tv_sec = 10, // Some NTRIP servers are bursty
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
#ifdef GARMINTXT_ENABLE
/**************************************************************************
*
* Garmin Simple Text protocol
*
**************************************************************************/
// *INDENT-OFF*
static const struct gps_type_t driver_garmintxt = {
.type_name = "Garmin Simple Text", // full name of type
.packet_type = GARMINTXT_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // no rollover or other flags
.trigger = NULL, // no recognition string
.channels = 0, // not used
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = garmintxt_parse, // how to parse one
.rtcm_writer = NULL, // don't send RTCM data
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // no event hook
.speed_switcher= NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
#endif // GARMINTXT_ENABLE
/**************************************************************************
*
* MediaTek MTK-3301, 3329, 3333, 3339
*
* OEMs for several GPS vendors, notably including Garmin, FasTrax, Trimble,
* and AdaFruit. Website at <http://www.mediatek.com/>.
*
* The Trimble Condor appears to be an MTK3329. It behaves as an MTK3301
* and positively acknowledges all 3301 sentences as valid. It ignores $PMTK
* sentence fields that are not implemented in the Trimble Condor. It does
* not have power-save mode and ignores $PMTK320. For $PMTK314 it silently
* ignores periodic enabling of messages that aren't supported.
*
* From its datasheet the MTK3339 seems to add QZSS support not present in
* earlier versions. The data sheet says it has 66 channels, which mkes
* sense given the multi-constellation capability. The channel count
* in the driver is never used by the NMEA driver so leaving the lower MTK3301
* value in there is OK.
*
* MTK3333 support 10Hz.
*
* The Adafruit GPS HAT for the Raspberry Pi is an MTK3339. It works with this
* driver; in fact AdaFruit's overview page for the product features GPSD.
*
* SIMCom DIM68M appears to be an MTK3333.
*
**************************************************************************/
static void mtk3301_event_hook(struct gps_device_t *session, event_t event)
{
/*
0 NMEA_SEN_GLL, GPGLL interval - Geographic Position - Latitude longitude
1 NMEA_SEN_RMC, GPRMC interval - Recommended Minimum Specific GNSS Sentence
2 NMEA_SEN_VTG, GPVTG interval - Course Over Ground and Ground Speed
3 NMEA_SEN_GGA, GPGGA interval - GPS Fix Data
4 NMEA_SEN_GSA, GPGSA interval - GNSS DOPS and Active Satellites
5 NMEA_SEN_GSV, GPGSV interval - GNSS Satellites in View
6 NMEA_SEN_GRS, GPGRS interval - GNSS Range Residuals
7 NMEA_SEN_GST, GPGST interval - GNSS Pseudorange Errors Statistics
13 NMEA_SEN_MALM, PMTKALM interval - GPS almanac information
14 NMEA_SEN_MEPH, PMTKEPH interval - GPS ephemeris information
15 NMEA_SEN_MDGP, PMTKDGP interval - GPS differential correction information
16 NMEA_SEN_MDBG, PMTKDBG interval – MTK debug information
17 NMEA_SEN_ZDA, GPZDA interval - Time & Date
18 NMEA_SEN_MCHN, PMTKCHN interval – GPS channel status
// MTK 3333
19 NMEA_SEN_DTM, GPDTM interval - Datum reference
"$PMTK314,1,1,1,1,1,5,1,1,0,0,0,0,0,0,0,0,0,1,0"
*/
if (session->context->readonly) {
return;
}
if (event == EVENT_TRIGGERMATCH) {
(void)nmea_send(session, "$PMTK320,0"); // power save off
// Fix interval, 1000 milliseconds
(void)nmea_send(session, "$PMTK300,1000,0,0,0.0,0.0");
// Set NMEA sentences.
(void)nmea_send(session,
"$PMTK314,0,1,0,1,1,5,1,1,0,0,0,0,0,0,0,0,0,1,0");
// DGPS is WAAS
(void)nmea_send(session, "$PMTK301,2");
// SBAS enable
(void)nmea_send(session, "$PMTK313,1");
/* PMTK_API_Q_OUTPUT_CTL - Query PPS pulse width - Trimble only?
* http://trl.trimble.com/docushare/dsweb/Get/Document-482603/CONDOR_UG_2C_75263-00.pdf *
* badly documented */
(void)nmea_send(session, "$PMTK424");
}
}
// mtk3301_speed_switcher()
// Always returns True
static bool mtk3301_speed_switcher(struct gps_device_t* session,
speed_t speed, char parity UNUSED,
int stopbits UNUSED)
{
int i;
char buf[BUFSIZ] = {0};
(void)snprintf(buf, sizeof(buf), "$PQBAUD,W,%d", (int) speed);
// Calling PQBAUD fails to set the receiver's baud rate
// some of the time. Sending it twice seems to work every time.
// So just for good measure, send it three times.
for (i = 0; i < 3; i++) {
(void)nmea_send(session, buf);
}
return true;
}
static bool mtk3301_rate_switcher(struct gps_device_t *session, double rate)
{
char buf[78];
unsigned int milliseconds = (unsigned int)(1000 * rate);
if (rate > 1) {
// force no slower than 1Hz
milliseconds = 1000;
} else if (rate < 0.1) {
// force no faster than 10Hz, MTK3333 can do 10Hz
milliseconds = 100;
}
(void)snprintf(buf, sizeof(buf), "$PMTK300,%u,0,0,0,0", milliseconds);
(void)nmea_send(session, buf); // Fix interval
return true;
}
// *INDENT-OFF*
const struct gps_type_t driver_mtk3301 = {
.type_name = "MTK-3301", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PMTK705,", // firmware release name and version
.channels = 12, // not used by this driver
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.rtcm_writer = gpsd_write, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = mtk3301_event_hook, // lifetime event handler
.speed_switcher = mtk3301_speed_switcher, // sample speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = mtk3301_rate_switcher, // sample rate switcher
.min_cycle.tv_sec = 0,
.min_cycle.tv_nsec = 100000000, // max 10Hz
.control_send = nmea_write, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
#ifdef ISYNC_ENABLE
/**************************************************************************
*
* Spectratime LNRCLOK / GRCLOK iSync GPS-disciplined rubidium oscillators
*
* These devices comprise a u-blox 6 attached to a separate iSync
* microcontroller which drives the rubidium oscillator. The iSync
* microcontroller can be configured to pass through the underlying
* GPS communication channel, while still using the GPS PPSREF signal
* to discipline the rubidium oscillator.
*
* The iSync can also generate its own periodic status packets in NMEA
* format. These describe the state of the oscillator (including
* whether or not the oscillator PPSOUT is synced to the GPS PPSREF).
* These packets are transmitted in the middle of the underlying GPS
* packets, forcing us to handle interrupted NMEA packets.
*
* The default state of the device is to generate no periodic output.
* We send a probe string to initiate beating of the iSync-proprietary
* $PTNTS,B message, which is then detected as a NMEA trigger.
*
**************************************************************************/
static ssize_t isync_write(struct gps_device_t *session, const char *data)
{
// 80 nseems a reasonable max, and strnlen() shuts up Codacy.
return gpsd_write(session, data, strnlen(data, 80));
}
static bool isync_detect(struct gps_device_t *session)
{
speed_t old_baudrate;
char old_parity;
unsigned int old_stopbits;
// Set 9600 8N1
old_baudrate = session->gpsdata.dev.baudrate;
old_parity = session->gpsdata.dev.parity;
old_stopbits = session->gpsdata.dev.stopbits;
gpsd_set_speed(session, 9600, 'N', 1);
/* Cancel pass-through mode and initiate beating of $PTNTS,B
* message, which can subsequently be detected as a trigger.
*/
(void)isync_write(session, "@@@@\r\nMAW0C0B\r\n");
// return serial port to original settings
gpsd_set_speed(session, old_baudrate, old_parity, old_stopbits);
return false;
}
static void isync_event_hook(struct gps_device_t *session, event_t event)
{
if (session->context->readonly) {
return;
}
if (event == EVENT_DRIVER_SWITCH) {
session->lexer.counter = 0;
}
if (event == EVENT_CONFIGURE) {
switch (session->lexer.counter) {
case 1:
/* Configure timing and frequency flags:
* - Thermal compensation active
* - PPSREF active
* - PPSOUT active
*/
(void)isync_write(session, "MAW040B\r\n");
/* Configure tracking flags:
* - Save frequency every 24 hours
* - Align PPSOUT to PPSINT
* - Track PPSREF
*/
(void)isync_write(session, "MAW0513\r\n");
/* Configure tracking start flags:
* - Tracking restart allowed
* - Align to PPSREF
*/
(void)isync_write(session, "MAW0606\r\n");
/* Configure tracking window:
* - 4us
*/
(void)isync_write(session, "MAW1304\r\n");
/* Configure alarm window:
* - 4us
*/
(void)isync_write(session, "MAW1404\r\n");
break;
case 2:
/* Configure pulse every d second:
* - pulse every second
*/
(void)isync_write(session, "MAW1701\r\n");
/* Configure pulse origin:
* - zero offset
*/
(void)isync_write(session, "MAW1800\r\n");
/* Configure pulse width:
* - 600ms
*/
(void)isync_write(session, "MAW1223C34600\r\n");
break;
case 3:
/* Configure GPS resource utilization:
* - do not consider GPS messages
*/
(void)isync_write(session, "MAW2200\r\n");
// Restart sync
(void)isync_write(session, "SY1\r\n");
// Restart tracking
(void)isync_write(session, "TR1\r\n");
break;
case 4:
// Cancel BTx messages (if any)
(void)isync_write(session, "BT0\r\n");
/* Configure messages coming out every second:
* - Oscillator status ($PTNTA) at 750ms
*/
(void)isync_write(session, "MAW0B00\r\n");
(void)isync_write(session, "MAW0C0A\r\n");
break;
case 5:
/* Enable GPS passthrough and force u-blox driver to
* select NMEA mode.
*/
session->mode = 0;
session->drivers_identified = 0;
(void)isync_write(session, "@@@@GPS\r\n");
break;
case 6:
/* Trigger detection of underlying u-blox (if necessary)
* UBX-CFG-PRT */
(void)ubx_write(session, 0x06, 0x00, NULL, 0);
break;
}
}
}
// *INDENT-OFF*
const struct gps_type_t driver_isync = {
.type_name = "iSync", // full name of type
.packet_type = NMEA_PACKET, // associated lexer packet type
.flags = DRIVER_STICKY, // remember this
.trigger = "$PTNTS,B,", // iSync status message
.channels = 50, // copied from driver_ubx
.probe_detect = isync_detect, // how to detect at startup time
.get_packet = packet_get1, // how to get a packet
.parse_packet = generic_parse_input, // how to interpret a packet
.init_query = NULL, // non-perturbing initial query
.event_hook = isync_event_hook, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = nmea_write, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
#endif // ISYNC_ENABLE
#ifdef AIVDM_ENABLE
/**************************************************************************
*
* AIVDM - ASCII armoring of binary AIS packets
*
**************************************************************************/
static bool aivdm_decode(unsigned char *buf, size_t buflen,
struct gps_device_t *session, struct ais_t *ais,
int debug)
{
#ifdef __UNUSED_DEBUG__
char *sixbits[64] = {
"000000", "000001", "000010", "000011", "000100",
"000101", "000110", "000111", "001000", "001001",
"001010", "001011", "001100", "001101", "001110",
"001111", "010000", "010001", "010010", "010011",
"010100", "010101", "010110", "010111", "011000",
"011001", "011010", "011011", "011100", "011101",
"011110", "011111", "100000", "100001", "100010",
"100011", "100100", "100101", "100110", "100111",
"101000", "101001", "101010", "101011", "101100",
"101101", "101110", "101111", "110000", "110001",
"110010", "110011", "110100", "110101", "110110",
"110111", "111000", "111001", "111010", "111011",
"111100", "111101", "111110", "111111",
};
#endif // __UNUSED_DEBUG__
int nfrags, ifrag, nfields = 0;
unsigned char *field[NMEA_MAX*2];
unsigned char fieldcopy[NMEA_MAX*2+1];
unsigned char *data, *cp;
const unsigned char *cp1;
int pad;
struct aivdm_context_t *ais_context;
int i;
if (0 == buflen) {
return false;
}
// we may need to dump the raw packet
GPSD_LOG(LOG_PROG, &session->context->errout,
"AIVDM packet length %zd: %s\n", buflen, buf);
// first clear the result, making sure we don't return garbage
memset(ais, 0, sizeof(*ais));
// discard overlong sentences
if (strnlen((char *)buf, buflen) > (sizeof(fieldcopy) - 1)) {
GPSD_LOG(LOG_ERROR, &session->context->errout,
"overlong AIVDM packet.\n");
return false;
}
// discard sentences with high-half characters in them, they're corrupted
for (cp1 = buf; *cp1; cp1++) {
if (!isascii(*cp1)) {
GPSD_LOG(LOG_ERROR, &session->context->errout,
"corrupted AIVDM packet.\n");
return false;
}
}
// extract packet fields
(void)strlcpy((char *)fieldcopy, (char *)buf, sizeof(fieldcopy));
field[nfields++] = buf;
for (cp = fieldcopy; cp < fieldcopy + buflen; cp++) {
if (((unsigned char)',' == *cp) ||
((unsigned char)'*' == *cp)) {
*cp = '\0';
field[nfields++] = cp + 1;
}
}
#ifdef __UNDEF_DEBUG_
for(int nf = 0; nf < nfields; nf++) {
GPSD_LOG(LOG_DATA, &session->context->errout,
"field [%d] [%s]\n", nf, field[nf]);
}
#endif
// discard sentences with exiguous commas; catches run-ons
if (7 > nfields) {
GPSD_LOG(LOG_ERROR, &session->context->errout,
"malformed AIVDM packet.\n");
return false;
}
switch (field[4][0]) {
case '\0':
/*
* Apparently an empty channel is normal for AIVDO sentences,
* which makes sense as they don't come in over radio. This
* is going to break if there's ever an AIVDO type 24, though.
*/
if (!str_starts_with((const char *)field[0], "!AIVDO")) {
GPSD_LOG(LOG_INF, &session->context->errout,
"invalid empty AIS channel. Assuming 'A'\n");
}
ais_context = &session->driver.aivdm.context[0];
session->driver.aivdm.ais_channel ='A';
break;
case '1':
if (strcmp((char *)field[4], (char *)"12") == 0) {
GPSD_LOG(LOG_INF, &session->context->errout,
"ignoring bogus AIS channel '12'.\n");
return false;
}
FALLTHROUGH
case 'A':
ais_context = &session->driver.aivdm.context[0];
session->driver.aivdm.ais_channel ='A';
break;
case '2':
FALLTHROUGH
case 'B':
ais_context = &session->driver.aivdm.context[1];
session->driver.aivdm.ais_channel ='B';
break;
case 'C':
GPSD_LOG(LOG_INF, &session->context->errout,
"ignoring AIS channel C (secure AIS).\n");
return false;
default:
GPSD_LOG(LOG_ERROR, &session->context->errout,
"invalid AIS channel 0x%0X .\n", field[4][0]);
return false;
}
nfrags = atoi((char *)field[1]); // number of fragments to expect
ifrag = atoi((char *)field[2]); // fragment id
data = field[5];
pad = 0;
if(isdigit(field[6][0])) {
pad = field[6][0] - '0'; // number of padding bits ASCII encoded
}
GPSD_LOG(LOG_PROG, &session->context->errout,
"nfrags=%d, ifrag=%d, decoded_frags=%d, data=%s, pad=%d\n",
nfrags, ifrag, ais_context->decoded_frags, data, pad);
// assemble the binary data
// check fragment ordering
if (ifrag != ais_context->decoded_frags + 1) {
GPSD_LOG(LOG_ERROR, &session->context->errout,
"invalid fragment #%d received, expected #%d.\n",
ifrag, ais_context->decoded_frags + 1);
if (1 != ifrag) {
return false;
}
/* else, ifrag==1: Just discard all that was previously decoded and
* simply handle that packet */
ais_context->decoded_frags = 0;
}
if (1 == ifrag) {
(void)memset(ais_context->bits, '\0', sizeof(ais_context->bits));
ais_context->bitlen = 0;
}
// wacky 6-bit encoding, shades of FIELDATA
// Max 256 is a guess, to pacify Codacy
for (cp = data; cp < data + strnlen((char *)data, 256); cp++) {
unsigned char ch;
ch = *cp;
ch -= 48;
if (ch >= 40) {
ch -= 8;
}
#ifdef __UNUSED_DEBUG__
GPSD_LOG(LOG_RAW, &session->context->errout,
"%c: %s\n", *cp, sixbits[ch]);
#endif // __UNUSED_DEBUG__
for (i = 5; i >= 0; i--) {
if ((ch >> i) & 0x01) {
ais_context->bits[ais_context->bitlen / 8] |=
(1 << (7 - ais_context->bitlen % 8));
}
ais_context->bitlen++;
if (ais_context->bitlen > sizeof(ais_context->bits)) {
GPSD_LOG(LOG_INF, &session->context->errout,
"overlong AIVDM payload truncated.\n");
return false;
}
}
}
ais_context->bitlen -= pad;
// time to pass buffered-up data to where it's actually processed?
if (ifrag == nfrags) {
if (debug >= LOG_INF) {
size_t clen = BITS_TO_BYTES(ais_context->bitlen);
GPSD_LOG(LOG_INF, &session->context->errout,
"AIVDM payload is %zd bits, %zd chars: %s\n",
ais_context->bitlen, clen,
gps_hexdump(session->msgbuf, sizeof(session->msgbuf),
ais_context->bits, clen));
}
// clear waiting fragments count
ais_context->decoded_frags = 0;
// decode the assembled binary packet
return ais_binary_decode(&session->context->errout,
ais,
ais_context->bits,
ais_context->bitlen,
&ais_context->type24_queue);
}
// we're still waiting on another sentence
ais_context->decoded_frags++;
return false;
}
static gps_mask_t aivdm_analyze(struct gps_device_t *session)
{
if (session->lexer.type == AIVDM_PACKET) {
if (aivdm_decode(session->lexer.outbuffer, session->lexer.outbuflen,
session, &session->gpsdata.ais,
session->context->errout.debug)) {
return ONLINE_SET | AIS_SET;
}
// else
return ONLINE_SET;
}
if (session->lexer.type == NMEA_PACKET) {
return nmea_parse((char *)session->lexer.outbuffer, session);
}
// else
return 0;
}
// *INDENT-OFF*
const struct gps_type_t driver_aivdm = {
// Full name of type
.type_name = "AIVDM", // associated lexer packet type
.packet_type = AIVDM_PACKET, // numeric packet type
.flags = DRIVER_NOFLAGS, // no rollover or other flags
.trigger = NULL, // identifying response
.channels = 0, // not used by this driver
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // how to get a packet
.parse_packet = aivdm_analyze, // how to analyze a packet
.rtcm_writer = NULL, // don't send RTCM data,
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no rate switcher
.min_cycle.tv_sec = 1, // max 1Hz
.min_cycle.tv_nsec = 0,
.control_send = NULL, // no control sender
.time_offset = NULL, // no NTP communication
};
// *INDENT-ON*
#endif // AIVDM_ENABLE
/**************************************************************************
*
* JSON passthrough driver
*
**************************************************************************/
// prepend the session path to the value of a specified attribute
static void path_rewrite(struct gps_device_t *session, char *prefix)
{
/*
* Hack the packet to reflect its origin. This code is supposed
* to insert the path naming the remote gpsd instance into the
* beginning of the path attribute, followed by a # to separate it
* from the device.
*/
char *prefloc;
assert(prefix != NULL && session->lexer.outbuffer != NULL);
// possibly the rewrite has been done already, this comw up in gpsmon
if (strstr((char *)session->lexer.outbuffer,
session->gpsdata.dev.path) != NULL) {
return;
}
for (prefloc = (char *)session->lexer.outbuffer;
prefloc < (char *)session->lexer.outbuffer+session->lexer.outbuflen;
prefloc++) {
if (str_starts_with(prefloc, prefix)) {
char *sfxloc;
char copy[sizeof(session->lexer.outbuffer)+1];
(void)strlcpy(copy,
(char *)session->lexer.outbuffer,
sizeof(copy));
prefloc += strlen(prefix);
(void)strlcpy(prefloc,
session->gpsdata.dev.path,
sizeof(session->gpsdata.dev.path));
sfxloc = strchr(prefloc, '#');
if (sfxloc) {
*sfxloc = '\0'; // Avoid accumulating multiple device names
}
(void)strlcat((char *)session->lexer.outbuffer, "#",
sizeof(session->lexer.outbuffer));
(void)strlcat((char *)session->lexer.outbuffer,
copy + (prefloc-(char *)session->lexer.outbuffer),
sizeof(session->lexer.outbuffer));
}
}
session->lexer.outbuflen = strnlen((char *)session->lexer.outbuffer,
sizeof(session->lexer.outbuffer));
}
static gps_mask_t json_pass_packet(struct gps_device_t *session)
{
GPSD_LOG(LOG_IO, &session->context->errout,
"<= GPS: %s\n", (char *)session->lexer.outbuffer);
if (strstr(session->gpsdata.dev.path, ":/") != NULL &&
strstr(session->gpsdata.dev.path, "localhost") == NULL) {
// devices and paths need to be edited
if (strstr((char *)session->lexer.outbuffer, "DEVICE") != NULL) {
path_rewrite(session, "\"path\":\"");
}
path_rewrite(session, "\"device\":\"");
// mark certain responses without a path or device attribute
if (session->gpsdata.dev.path[0] != '\0') {
if (strstr((char *)session->lexer.outbuffer, "VERSION") != NULL ||
strstr((char *)session->lexer.outbuffer, "WATCH") != NULL ||
strstr((char *)session->lexer.outbuffer, "DEVICES") != NULL) {
session->lexer.outbuffer[session->lexer.outbuflen-1] = '\0';
(void)strlcat((char *)session->lexer.outbuffer, ",\"remote\":\"",
sizeof(session->lexer.outbuffer));
(void)strlcat((char *)session->lexer.outbuffer,
session->gpsdata.dev.path,
sizeof(session->lexer.outbuffer));
(void)strlcat((char *)session->lexer.outbuffer, "\"}",
sizeof(session->lexer.outbuffer));
}
session->lexer.outbuflen = strnlen(
(char *)session->lexer.outbuffer,
sizeof(session->lexer.outbuffer));
}
}
GPSD_LOG(LOG_PROG, &session->context->errout,
"JSON, passing through %s\n",
(char *)session->lexer.outbuffer);
return PASSTHROUGH_IS;
}
// *INDENT-OFF*
const struct gps_type_t driver_json_passthrough = {
.type_name = "JSON slave driver", // full name of type
.packet_type = JSON_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // don't remember this
.trigger = NULL, // it's the default
.channels = 0, // not used
.probe_detect = NULL, // no probe
.get_packet = packet_get1, // use generic packet getter
.parse_packet = json_pass_packet, // how to interpret a packet
.rtcm_writer = NULL, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
// *INDENT-ON*
// *INDENT-OFF*
const struct gps_type_t driver_pps = {
.type_name = "PPS", // full name of type
.packet_type = BAD_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // don't remember this
.trigger = NULL, // it's the default
.channels = 0, // not used
.probe_detect = NULL, // no probe
.get_packet = NULL, // use generic packet getter
.parse_packet = NULL, // how to interpret a packet
.rtcm_writer = NULL, // write RTCM data straight
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // lifetime event handler
.speed_switcher = NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
.min_cycle.tv_sec = 1, // not relevant, no rate switch
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL, // no method for NTP fudge factor
};
static const struct gps_type_t driver_spartn = {
.type_name = "SPARTN", // full name of type
.packet_type = SPARTN_PACKET, // associated lexer packet type
.flags = DRIVER_NOFLAGS, // no rollover or other flags
.trigger = NULL, // no recognition string
.channels = 0, // not used
.probe_detect = NULL, // no probe
.get_packet = NULL, // use generic packet getter
.parse_packet = spartn_parse, //
.rtcm_writer = NULL, // Do not write back to NTRIP!
.init_query = NULL, // non-perturbing initial query
.event_hook = NULL, // no event hook
.speed_switcher= NULL, // no speed switcher
.mode_switcher = NULL, // no mode switcher
.rate_switcher = NULL, // no sample-rate switcher
// cycle not relevant, no rate switch, but can generate log noise
.min_cycle.tv_sec = 10, // Some NTRIP servers are bursty
.min_cycle.tv_nsec = 0, // not relevant, no rate switch
.control_send = NULL, // how to send control strings
.time_offset = NULL,
};
// *INDENT-ON*
extern const struct gps_type_t driver_allystar;
extern const struct gps_type_t driver_casic;
extern const struct gps_type_t driver_evermore;
extern const struct gps_type_t driver_garmin_ser_binary;
extern const struct gps_type_t driver_garmin_usb_binary;
extern const struct gps_type_t driver_geostar;
extern const struct gps_type_t driver_greis;
extern const struct gps_type_t driver_italk;
extern const struct gps_type_t driver_navcom;
extern const struct gps_type_t driver_nmea2000;
extern const struct gps_type_t driver_oncore;
extern const struct gps_type_t driver_sirf;
extern const struct gps_type_t driver_skytraq;
extern const struct gps_type_t driver_superstar2;
extern const struct gps_type_t driver_tsip;
extern const struct gps_type_t driver_ubx;
extern const struct gps_type_t driver_zodiac;
// the point of this rigamarole is to not have to export a table size
static const struct gps_type_t *gpsd_driver_array[] = {
&driver_unknown,
&driver_nmea0183,
&driver_allystar,
&driver_is,
&driver_ashtech,
&driver_casic,
#ifdef TRIPMATE_ENABLE
&driver_tripmate,
#endif // TRIPMATE_ENABLE
#ifdef EARTHMATE_ENABLE
&driver_earthmate,
#endif // EARTHMATE_ENABLE
#ifdef GPSCLOCK_ENABLE
&driver_gpsclock,
#endif // GPSCLOCK_ENABLE
#ifdef GARMIN_ENABLE
&driver_garmin,
#endif // GARMIN_ENABLE
&driver_mtk3301,
#ifdef FV18_ENABLE
&driver_fv18,
#endif // FV18_ENABLE
#ifdef TNT_ENABLE
&driver_trueNorth,
#endif // TNT_ENABLE
#ifdef FURY_ENABLE
&driver_fury,
#endif // FURY_ENABLE
#ifdef AIVDM_ENABLE
&driver_aivdm,
#endif // AIVDM_ENABLE
#ifdef EVERMORE_ENABLE
&driver_evermore,
#endif // EVERMORE_ENABLE
#ifdef GARMIN_ENABLE
// be sure to try Garmin Serial Binary before Garmin USB Binary
&driver_garmin_ser_binary,
&driver_garmin_usb_binary,
#endif // GARMIN_ENABLE
#ifdef GEOSTAR_ENABLE
&driver_geostar,
#endif // GEOSTAR_ENABLE
#ifdef GREIS_ENABLE
&driver_greis,
#endif // GREIS_ENABLE
#ifdef ITRAX_ENABLE
&driver_italk,
#endif // ITRAX_ENABLE
#ifdef ONCORE_ENABLE
&driver_oncore,
#endif // ONCORE_ENABLE
#ifdef NAVCOM_ENABLE
&driver_navcom,
#endif // NAVCOM_ENABLE
#ifdef SIRF_ENABLE
&driver_sirf,
#endif // SIRF_ENABLE
#ifdef SKYTRAQ_ENABLE
&driver_skytraq,
#endif // SKYTRAQ_ENABLE
&driver_spartn,
#ifdef SUPERSTAR2_ENABLE
&driver_superstar2,
#endif // SUPERSTAR2_ENABLE
#ifdef TSIP_ENABLE
&driver_tsip,
#endif // TSIP_ENABLE
#ifdef ISYNC_ENABLE
&driver_isync,
#endif // ISYNC_ENABLE
&driver_ubx,
#ifdef ZODIAC_ENABLE
&driver_zodiac,
#endif // ZODIAC_ENABLE
#ifdef NMEA2000_ENABLE
&driver_nmea2000,
#endif // NMEA2000_ENABLE
&driver_rtcm104v2,
&driver_rtcm104v3,
#ifdef GARMINTXT_ENABLE
&driver_garmintxt,
#endif // GARMINTXT_ENABLE
&driver_json_passthrough,
&driver_pps,
NULL,
};
const struct gps_type_t **gpsd_drivers = &gpsd_driver_array[0];
// vim: set expandtab shiftwidth=4
|