summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorChris Kuethe <chris.kuethe@gmail.com>2009-07-16 01:42:54 +0000
committerChris Kuethe <chris.kuethe@gmail.com>2009-07-16 01:42:54 +0000
commit75f65293a01a6a79cf34d206f36e5d667c0f9940 (patch)
tree89309c222a5ad8111398259ecd04d2009dc5a72b /drivers.c
parent1e2d6d30ec9ccfe8b0ba51e7b0ef866d8c30f70f (diff)
downloadgpsd-75f65293a01a6a79cf34d206f36e5d667c0f9940.tar.gz
Rough oncore driver.
Doesn't do anything useful, but will be handy for people with actual hardware who can hack on the decoders. Doesn't break the regression tests either.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers.c b/drivers.c
index c98bd8b9..29aece80 100644
--- a/drivers.c
+++ b/drivers.c
@@ -1121,7 +1121,7 @@ static const struct gps_type_t aivdm = {
#endif /* AIVDM_ENABLE */
extern const struct gps_type_t garmin_usb_binary, garmin_ser_binary;
-extern const struct gps_type_t sirf_binary, tsip_binary;
+extern const struct gps_type_t sirf_binary, tsip_binary, oncore_binary;
extern const struct gps_type_t evermore_binary, italk_binary;
extern const struct gps_type_t navcom_binary, superstar2_binary;
@@ -1173,6 +1173,9 @@ static const struct gps_type_t *gpsd_driver_array[] = {
#ifdef ITRAX_ENABLE
&italk_binary,
#endif /* ITRAX_ENABLE */
+#ifdef ONCORE_ENABLE
+ &oncore_binary,
+#endif /* ONCORE_ENABLE */
#ifdef NAVCOM_ENABLE
&navcom_binary,
#endif /* NAVCOM_ENABLE */
@@ -1181,7 +1184,7 @@ static const struct gps_type_t *gpsd_driver_array[] = {
#endif /* SIRF_ENABLE */
#ifdef SUPERSTAR2_ENABLE
&superstar2_binary,
-#endif /* SIRF_ENABLE */
+#endif /* SUPERSTAR2_ENABLE */
#ifdef TSIP_ENABLE
&tsip_binary,
#endif /* TSIP_ENABLE */