summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2016-03-29 19:31:22 -0700
committerGary E. Miller <gem@rellim.com>2016-03-29 19:31:22 -0700
commit686eaea63c44399dee5e80b699747e3d323f66d4 (patch)
tree42b3eb94cffa62ecbb77adfa1283dbfe1cf57518 /drivers.c
parente19519fa0aa4e5edff8ad008043aee6f14fa317f (diff)
downloadgpsd-686eaea63c44399dee5e80b699747e3d323f66d4.tar.gz
Add driver_skytraq.c.
It grabs packets, but does not decode any yet.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers.c b/drivers.c
index 5d62706b..3ce1f26d 100644
--- a/drivers.c
+++ b/drivers.c
@@ -1719,6 +1719,7 @@ 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;
@@ -1787,6 +1788,9 @@ static const struct gps_type_t *gpsd_driver_array[] = {
#ifdef SIRF_ENABLE
&driver_sirf,
#endif /* SIRF_ENABLE */
+#ifdef SKYTRAQ_ENABLE
+ &driver_skytraq,
+#endif /* SKYTRAQ_ENABLE */
#ifdef SUPERSTAR2_ENABLE
&driver_superstar2,
#endif /* SUPERSTAR2_ENABLE */