summaryrefslogtreecommitdiff
path: root/garmin.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2006-09-25 23:41:35 +0000
committerGary E. Miller <gem@rellim.com>2006-09-25 23:41:35 +0000
commit83bad9af14a0083bf2a1a5a63314470877bb649e (patch)
tree915cd538f586b6698d0bdc4fa9a66f4b0e999833 /garmin.c
parent883fee8fbdc0befc36c6451d7c0f616e460dd507 (diff)
downloadgpsd-83bad9af14a0083bf2a1a5a63314470877bb649e.tar.gz
More steps on the way to Garmin binary over serial.
Not sure what the binary init strings will do to other types of GPS.
Diffstat (limited to 'garmin.c')
-rw-r--r--garmin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/garmin.c b/garmin.c
index aea753ef..66d8a59d 100644
--- a/garmin.c
+++ b/garmin.c
@@ -914,9 +914,9 @@ static gps_mask_t garmin_parse_input(struct gps_device_t *session)
}
/* this is everything we export */
-struct gps_type_t garmin_binary =
+struct gps_type_t garmin_usb_binary =
{
- .typename = "Garmin binary", /* full name of type */
+ .typename = "Garmin USB binary", /* full name of type */
.trigger = NULL, /* no trigger, it has a probe */
.channels = GARMIN_CHANNELS, /* consumer-grade GPS */
.probe = garmin_probe, /* how to detect at startup time */
@@ -932,9 +932,9 @@ struct gps_type_t garmin_binary =
.cycle = 1, /* updates every second */
};
-struct gps_type_t garmin_binary2 =
+struct gps_type_t garmin_ser_binary =
{
- .typename = "Garmin binary2", /* full name of type */
+ .typename = "Garmin Serial binary", /* full name of type */
.trigger = NULL, /* no trigger, it has a probe */
.channels = GARMIN_CHANNELS, /* consumer-grade GPS */
.probe = garmin_probe, /* how to detect at startup time */