summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorChris Kuethe <chris.kuethe@gmail.com>2006-12-15 06:53:43 +0000
committerChris Kuethe <chris.kuethe@gmail.com>2006-12-15 06:53:43 +0000
commitccc954b862eb21fae5df8f08f6a06fd4cc5e06c9 (patch)
treee14e36501d98be17c5f478720f10532786df7f4e /drivers.c
parent75060d26715ecb280deeb730e8d952b9398f5183 (diff)
downloadgpsd-ccc954b862eb21fae5df8f08f6a06fd4cc5e06c9.tar.gz
The start of a UBX driver, from Andreas Stricker. Not yet
functional but committed to allow for in-tree development.
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 5a9a3eb0..4f90c39c 100644
--- a/drivers.c
+++ b/drivers.c
@@ -14,6 +14,7 @@
#include "gpsd.h"
extern struct gps_type_t zodiac_binary;
+extern struct gps_type_t ubx_binary;
ssize_t generic_get(struct gps_device_t *session)
{
@@ -860,6 +861,9 @@ static struct gps_type_t *gpsd_driver_array[] = {
#ifdef NAVCOM_ENABLE
&navcom_binary,
#endif /* NAVCOM_ENABLE */
+#ifdef UBX_ENABLE
+ &ubx_binary,
+#endif /* UBX_ENABLE */
#ifdef GARMIN_ENABLE
&garmin_usb_binary,
&garmin_ser_binary,