summaryrefslogtreecommitdiff
path: root/driver_garmin.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-10-13 14:09:08 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-10-13 14:10:30 -0400
commit60b874d966ce88bea269879b1ac86cc7b6ae39cc (patch)
tree3085e4a526a823863197cdd79fa9bb27fe822feb /driver_garmin.c
parent6649e751fe084cf1034d8ccb65496f0c167b66c4 (diff)
downloadgpsd-60b874d966ce88bea269879b1ac86cc7b6ae39cc.tar.gz
Create driver slot and scons option for a visualizer driver method.
Diffstat (limited to 'driver_garmin.c')
-rw-r--r--driver_garmin.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/driver_garmin.c b/driver_garmin.c
index 5263163b..67d23cec 100644
--- a/driver_garmin.c
+++ b/driver_garmin.c
@@ -1391,6 +1391,9 @@ const struct gps_type_t garmin_usb_binary_old =
#ifdef CONTROLSEND_ENABLE
.control_send = garmin_control_send, /* send raw bytes */
#endif /* CONTROLSEND_ENABLE */
+#ifdef VISUALIZE_ENABLE
+ .visualize = NULL, /* no visualization method */
+#endif /* VISUALIZE_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = garmin_ntp_offset,
#endif /* NTPSHM_ ENABLE */
@@ -1420,6 +1423,9 @@ const struct gps_type_t garmin_usb_binary =
#ifdef CONTROLSEND_ENABLE
.control_send = garmin_control_send, /* send raw bytes */
#endif /* CONTROLSEND_ENABLE */
+#ifdef VISUALIZE_ENABLE
+ .visualize = NULL, /* no visualization method */
+#endif /* VISUALIZE_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = garmin_ntp_offset,
#endif /* NTPSHM_ ENABLE */
@@ -1448,6 +1454,9 @@ const struct gps_type_t garmin_ser_binary =
#ifdef CONTROLSEND_ENABLE
.control_send = garmin_control_send, /* send raw bytes */
#endif /* CONTROLSEND_ENABLE */
+#ifdef VISUALIZE_ENABLE
+ .visualize = NULL, /* no visualization method */
+#endif /* VISUALIZE_ENABLE */
#ifdef NTPSHM_ENABLE
.ntp_offset = garmin_ntp_offset,
#endif /* NTPSHM_ ENABLE */