-
Notifications
You must be signed in to change notification settings - Fork 3
/
gpscap.ini
2564 lines (2302 loc) · 68.6 KB
/
gpscap.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# GPS capability description file
#
# This file is Copyright (c) 2010 by the GPSD project
# BSD terms apply: see the file COPYING in the distribution root for details.
#
# Our apologies to all Unix hackers in advance for the grubby .INI syntax,
# we're using it because the format has good cross-Unix support in Python.
#
# Each section may have the following capabilities
#
# type = "engine", "vendor", or "device"
# date = date of submission
# submitter = email of submitter, name may need quoting for RFC822
# description = Human-readable description of this item
# packaging = A device's form factor
# techdoc = URL to technical documentation, or at least a spec sheet
# vendor_site = URL of a vendor site
# vendor = vendor name
# eval_unit = Which GPSD devs have one for testing (list)
# engine = GPS chipset (may reference another section)
# subtype = engine subtype or firmware revision level
# interfaces = interface types: USB, RS-232, Bluetooth, CF, TTL, CAN.
# May be a list.
# usbchip = USB I/O chipset
# pps = supports pulse-per-second precision time reporting
# pps_accuracy = claimed PPS accuracy
# time_offset = NTP offset
# configurable = can the device be bricked by speed changes?
# tested = last gpsd tested, or "regression" if we have a test load
# nmea = NMEA version this emits, if known
# notes = Miscellaneous notes on this item. To be interpreted as HTML
# rating = excellent, good, fair, poor, broken, other
# discontinued = If True, product has been discontinued
#
# Capability strings:
#
# to_nmea = if present, how to switch to NMEA 0183 mode from native binary
# to_native = if present, how to swith to native binary mode from NMEA
# modeset = set protocol, baud rate, 8N1
#
# Inheritance
#
# To inherit capabilities from a specified section, name the section in
# a "uses =" attribute. Use chains are followed recursively. An attribute
# in a section overrides all attributes of the same name in all ancestor
# sections.
#
# Certain escapes in capability strings are translated:
#
# %b - baud rate as ASCII numeral
#
# A string beginning with 0x is interpreted as a sequence of paired hex bytes,
# leading 0x not included.
#
# Comment lines led with "#%" are vendor section marks to be used when
# generating an HTML table from this file. Each should consist of a vendor
# name.
#
# Further notes:
# * In the packaging feld, a "GPS mouse" is a standalone sensor in a
# display-less case designed be used as an outbard peripheral. An
# "OEM module" is an un-cased circuit board with edge connectors; a
# "chipset" is what it sounds like.
# A "handset" is a standalone GPS with a display and human-usable
# controls. A "handsfree" is a hands-free unit with display designed for
# mounting on a car windshield or boat dash.
# * In the rating field:
# "excellent" - gpsd recognizes the GPS rapidly and reliably,
# reports are complete and correct.
# "good" -- gpsd has minor problems or lag recognizing the device,
# but reports are complete and correct.
# "fair" -- Reports have minor dropouts or problems, including occasional
# transient nonsense values.
# "poor" -- Reports frequently have values that are wrong or nonsense.
# "broken" -- gpsd frequently fails to recognize the device at all.
# "other -- See Technical Notes.
#
# Chipsets
#
[GenericSiRF]
type = engine
description = Capabilities generic to all SiRF chips
# Sets 4800 baud shipping GGA+GSA+GSV+RMC
to_nmea = 0xa0a200188102010100000101050101010000000100010001000112c00000b0b3
to_native = $PSRF100,0,%b,8,1,0 # Sets 8N1 with specified speed
[SiRF-1]
type = engine
description = Version 1 of the SiRF GPS engine
engine = SiRF-1
nmea = 2.2
uses = GenericSiRF
tested = 2.34
rating = good
logs = ublox-sirf1.log
notes = ublox-sirf1.log was made from a device with ublox firmware and
may not be typical of SiRF-1 chips.
[SiRF-2]
type = engine
description = Version 2 of the SiRF GPS engine
engine = SiRF-2
# Later versions may do 2.3
nmea = 2.2
uses = GenericSiRF
tested = 2.37
rating = good
logs = bu303b-nofix.log, bu303-climbing.log, bu303-moving.log,
bu303-nofix.log, bu303-stillfix.log, haicom-305N.log, holux-gm-210.log,
pharos-360.log, tn200-all.log, tn200.log, tn204.log
notes = The bu* logs are in native binary format; the Haicom, Holux, Pharos,
and TripNav logs in NMEA. NMEA starts with GGA and ends with RMC. The
tn204 NMEA looks remarkably like older Garmin cruft and may be emulating
one, including the split reporting cycle.
[SiRF-3]
type = engine
description = Version 3 of the SiRF GPS engine
engine = SiRF-3
nmea = 3.01
uses = GenericSiRF
rating = good
logs = blumax-gps009.log, gpslim236.log, motorola-t805.log, rgm3800.log, et-332.log, tomtom-mkII.log
notes = The Blumax log is in NMEA mode. Start of cycle is GGA, End of cycle
is RMC. Some variants (like the Blumax) emit ZDA before GGA; others
(like the GPSlim 1236, Motorola T805, RGM3800) do not.
[SiRF-4]
type = engine
description = Version 4 of the SiRF GPS engine
engine = SiRF-4
nmea = 3.01
uses = GenericSiRF
rating = poor
notes = Low power usage, but poor sensitivity and very long startup.
Resets to 4800N1 every time it is unplugged. Has a tendency to freeze
when switched from binary to NMEA mode (unplugging it fixes this).
[MSB2122]
type = engine
engine = MSB2122
nmea = 2.3
rating = good
techdoc = http://www.mstar-europe.com/products.php
notes = Code-named "Poseidon 2", this appears to be a MIPS core. May
ship with serious bugs that cause bogus fixes or hard crashes.
[ANTARIS]
type = engine
engine = ANTARIS
nmea = 2.3
rating = good
techdoc = http://www.u-blox.com/products/tim_lp.html
discontinued = True
notes = The ANTARIS chipset has been end-of-lifed.
[ANTARIS4]
type = engine
engine = ANTARIS4
techdoc = http://www.u-blox.com/products/a4products.html
nmea = 2.3
rating = good
notes = Sends 'E' in second field of GSA record, not an NMEA value.
Actually sends '6' in the GGA rating record for dead-reckoning fixes.
(This behavior reported on the 4H chipset.)
logs = ublox-lea-4h.log, ublox-lea-4s.log, ublox-lea-4t.log
[LEA-5H]
type = engine
engine = LEA-5H
nmea = 2.3
rating = good
tested = 2.92
notes = Appears not to have the ANTARIS4 GSA quirk.
logs = ublox-lea-5h.log
[LEA-6H]
type = engine
engine = LEA-6H
nmea = 2.3
rating = good
tested = 3.9
notes = Appears not to have the ANTARIS4 GSA quirk. Excellent indoors.
[FastraX iTrax03]
type = engine
techdoc = http://www.fastraxgps.com/products/gpsmodules/index.cfm?template=products.show.cfm&productGuid=4594da1a-503c-469c-91b2-6948043189be
engine = FastraX iTrax03
rating = good
logs = com-1289.log
notes = Start of fix cycle is RMC, end is GGA (GSVs may come after).
[Garmin]
type = engine
engine = Garmin
description = There are several versions; the differences are not clear.
techdoc = http://www.garmin.com/support/commProtocol.html
rating = good
[MTK]
type = engine
nmea = 3.01
engine = MTK
rating = good
techdoc = http://www.fastraxgps.cn/download/NMEA_manual_for_Fastrax_IT500_Series_GPS_receivers.pdf
notes = We have seen two versions of this, the MTK3301 and MTK3329. The
technical-documentation link describes the 3329, but we think the 3301
is compatible for GPSD purposes.
[Nemerix]
type = engine
engine = Nemerix
nmea = 3.01
rating = good
notes = NemeriX has gone into liquidation as of Jan 2009). It's funny, they
didn't understand why they should give me an unencumbered protocol
techdoc.
[NovAtel-L1]
type = engine
engine = NovAtel-L1
techdoc = http://www.novatel.com/Documents/Manuals/om-20000086.pdf
nmea = 2.20
rating = good
notes = Seems to be built around the Zarlink GP4020.
[Pilot Plug]
type = engine
engine = Pilot Plug
rating = good
[Sony CXD2951]
type = engine
techdoc = http://gpsd.googlecode.com/files/cxd2951-commands.pdf
engine = Sony CXD2951
rating = good
[Touchstone ASIC]
type = engine
engine = Touchstone ASIC
rating = good
techdoc = http://www.navcomtech.com/Products/GPS/Touchstone.cfm
[uNav]
type = engine
engine = uN3010
nmea = 3.01
notes = uNav was acquired by Atheros in 2007. They have inherited
one GPS product, now designated uN3010.
rating = good
[Zodiac]
type = engine
engine = Zodiac
nmea = 2.2
tested = 2.0
techdoc = http://www.gpskit.nl/downloads-en.htm
notes = This chip was made by Rockwell International. It was
also known as the Jupiter. It has been EOLed.
rating = good
logs = zodiac.log
[BD960]
type = engine
engine = BD960
nmea = 3.0?
tested = 2.39
notes = Spec sheet says it emits GSV, AVR, RMC, HDT, VGK, VHD, GGLK, GGA, GSA,
ZDA, VTG, GST, and PIT in NMEA mode. Many of these are nonstandard.
Also says: "JK and Binary: Trimble GSOF". Other web sources say
it has RTK capability.
rating = good
[Skytraq Venus 6]
type = engine
nmea = 3.01
rating = good
tested = 2.90
[STA8088]
type = engine
nmea = 2.2
rating = good
tested = 3.7
notes = From ST Microelectronics
[UBLOX NEO-5Q]
type = engine
nmea = 2.3
rating = good
tested = 2.39
notes = Supports WAAS.
[SE4100L]
type = engine
nmea = 3.01
rating = fair
notes = Does not handle dates after the 10-bit GPS week rollover in 2019 well.
logs = gp-320fw-2019-03-28.log, gp-320fw-2019-03-28.log-overflow, gp-320fw-2019-03-28.log-coldboot
#
# Vendors (alphabetical by vendor)
#
[Altina]
type = vendor
vendor_site = http://www.altina.com
[Adapt Mobile]
type = vendor
vendor_site = http://www.adapt-mobile.com>
[Axiom]
type = vendor
vendor_site = http://code.google.com/p/gpsd/downloads/detail?name=SiRF-Axiom.pdf&can=2&q=
[Billionton]
type = vendor
vendor_site = http://www.billionton.com/english/index.htm
[Bluenext]
type = vendor
vendor_site = http://www.bluenext.co.uk/
[Canmore]
type = vendor
vendor_site = http://www.canmore.com.tw/
[Columbus]
type = vendor
vendor_site = http://www.columbus-gps.de/
[Central Pacific]
type = vendor
vendor_site = http://www.cpit.com
[Delorme]
type = vendor
vendor_site = http://www.delorme.com
[Digital Yacht]
type = vendor
vendor_site = http://digitalyacht.mesltd.co.uk/
[Eurotech]
type = vendor
vendor_site = http://www.eurotech-inc.com/
[Fastrax]
type = vendor
vendor_site = http://www.fastraxgps.com/
[EuroTronics]
type = vendor
vendor_site = http://www.eurotronic.net/
[Garmin]
type = vendor
vendor_site = http://www.garmin.com
[Geostar]
type = vendor
vendor_site = http://www.geostar-navigation.com
[GlobalSat]
type = vendor
vendor_site = http://www.globalsat.com.tw/
[Haicom]
type = vendor
vendor_site = http://www.haicom.com.tw/
[Holux]
type = vendor
vendor_site = http://www.holux.com
[Humminbird]
type = vendor
vendor_site = http://www.humminbird.com/
notes = These guys make fish-finders that incorporate GPSes
[iTrek]
type = vendor
vendor_site = http://www.i-trek.jp
[Jackson Labs]
type = vendor
vendor_site = http://jackson-labs.com/
[LyconSys]
type = vendor
vendor_site = http://www.lyconsys.com/
[Magellan]
type = vendor
vendor_site = http://www.magellangps.com
notes = Now owns what used to be the Thales and Asht product lines
[Motorola]
type = vendor
vendor_site = http://www.motorola.com/ies/GPS/products_legacy.html
notes = Motorola has exited the GPS business. The OnCore line of
GPSes is now sold by <a href="http://www.synergy-gps.com/">Synergy Systems LLC</a>
[Navcom]
type = vendor
vendor_site = http://www.navcomtech.com/
[Navis Engineering Bureau]
type = vendor
vendor_site = http://www.navis.ru/
[Navisys]
type = vendor
vendor_site = http://www.navisys.com.tw/
[Navius]
type = vendor
vendor_site = http://www.navius.biz/
notes = This vendor has also traded as "Navisky".
[NaviLock]
type = vendor
vendor_site = http://www.navilock.de
[Navisys]
type = vendor
vendor_site = http://www.navisys.com.tw/
[NavMan]
type = vendor
vendor_site = http://www.navmanwirelessoem.com/
[Nokia]
type = vendor
vendor_site = http://www.nokia.com/
[NovAtel]
type = vendor
vendor_site = http://www.novatel.com/
[Parrot]
type = vendor
vendor_site = http://www.parrot.biz
[Pharos]
type = vendor
vendor_site = http://www.pharosgps.co/
[Phonix]
type=vendor
vendor_site = http://www.phonix.it/
[Qstarz]
type=vendor
vendor_site = http://www.qstarz.com/
[RF Solutions]
type = vendor
vendor_site = http://www.rfsolutions.co.uk
[Rikaline]
type = vendor
vendor_site = http://www.rikaline.com
[Royaltek]
type = vendor
vendor_site = http://www.royaltek.com/
[Saab]
type = vendor
vendor_site = http://www.saabgroup.com/
[San Jose Navigation]
type = vendor
vendor_site = http://www.sanav.com
[Sejat]
type = vendor
vendor_site = http://sejats.blogspot.com/
[SkyTraq]
type = vendor
vendor_site = http://www.skytraq.com.tw/
[Telit]
type = vendor
vendor_site = http://www.telit.com/
[Transystem]
type = vendor
vendor_site = http://www.transystem.com.tw/
[Techway]
type = vendor
vendor_site = http://www.techwayinc.com.tw/
notes = This vendor has dropped off the web
[TomTom]
type = vendor
vendor_site = http://www.tomtom.com
[Trimble]
type = vendor
vendor_site = http://www.trimble.com/
[u-blox]
type = vendor
vendor_site = http://www.u-blox.de/
[UniTraq]
type = vendor
vendor_site = http://www.unitraq.com/
[Variotek]
type = vendor
vendor_site = http://variotek.de/
[Wintec]
type = vendor
vendor_site = http://www.wintec.com.tw/
#
# Devices (alphabetical by vendor)
#
#% Altina
[GBT709]
type = device
vendor = Altina
packaging = handset
techdoc = http://www.altina.com/produkty.php?destCatId=&mainCatId=13&subCatId=&prId=19
interfaces = Bluetooth
configurable = insane
tested = 2.35
uses = SiRF-3
submitter = Benoit Panizzon <[email protected]>
notes = Requires the "-b" flag to prevent mode switching. If the receiver locks
up due to a mode switch, remove the battery for 5 to 10 minutes.
#% Adapt Mobile
[AD-500]
type = device
vendor = Adapt Mobile
packaging = mouse
techdoc = http://adapt-mobile.bosqom.com/default.php?page_ID=3&spage_ID=1
uses = Nemerix
interfaces = Bluetooth, USB
usbchip = pl2303
tested = 2.32
submitter = Dennis van Zuijlekom <[email protected]>.
discontinued = True
#% Axiom
[Sandpiper]
type = device
vendor = Axiom
packaging = OEM module
techdoc = http://code.google.com/p/gpsd/downloads/detail?name=SiRF-Axiom.pdf&can=2&q=
uses = SiRF-1
interfaces = RS-232
tested = 2.34
pps = True
notes = The vendor is out of business, but there are lots of these still
around in 2006. Complete documentation for this OEM module has been
archived at the GPSD site.
#% Billionton
[Billionton CF-GPS]
type = device
vendor = Billionton
packaging = mouse
techdoc = http://www.billionton.com/english/product/CF-GPS.htm
uses = SiRF-2
interfaces = CF
tested = 2.16
submitter = Oleg Gusev <[email protected]>.
notes = Uses SiRF firmware version 220.006.000ES. Accepts WAAS Mode Disable
(<tt>$PSRF108,00*02</tt>) and WAAS Mode Enable (<tt>$PSRF108,01*03</tt>)
controls.
#%Bluenext
[BN-901S]
type = device
engine = Skytraq Venus 6
date = 2010-06-10
location =
model = BN-901S
packaging = mouse
interfaces = Bluetooth
rating = excellent
submitter = Andrew Gray <[email protected]>
techdoc =http://www.bluenext.co.uk/customer-support/downloads/doc_download/34-bluenext-bn-901s-gps-receiver.html
tested = 2.39
vendor = Bluenext
notes = Device reports protocol as "Generic NMEA" without a version number.
Purchased retail (30GBP) to work with a Nokia 5233 - which is does well.
Best performing GPS receiver I have seen - fast fix and robust against
obstructions to sky view.
logs = bn-9015.log
#% Canmore
[GT-730F]
type = device
engine = SKYTRAK
interfaces = USB
nmea = 3.01
packaging = mouse
rating = good
submitter = Rene Warren <[email protected]>
techdoc = http://www.canmore.com.tw/pdf/English%20user%20manual_GT-730F_L.pdf
tested = 2.33
vendor = Canmore
notes =
#% Columbus
[V900]
type = device
uses = MTK
interfaces = Bluetooth
model = V900
packaging = mouse
rating = fair
submitter = Konstantin Ristl <[email protected]>
techdoc = http://www.columbus-gps.de/v-900_support.php
tested = 2.38
vendor = Columbus
notes = Device is also a GPS-Logger
#% Central Pacific
[CPIT GP-27]
type = device
vendor = Central Pacific
packaging = mouse
techdoc = http://www.cpit.com/en/GP-27.html
uses = Nemerix
interfaces = Bluetooth
tested = 2.28
configurable = insane
submitter = Tobias Minich <[email protected]>
notes = <ul>
<li>There are proprietary PNMRX{30[0124],603} sentences that are only sent
on change or by request</li>
<li>Several sentences can be sent to the device to change settings or
request information. DO NOT USE THE PNMRX100 SENTENCE TO CHANGE THE BAUD
RATE! This is not supported by the bluetooth chip on the device.</li>
<li>Settings are saved in flash powered by a backup battery and persistent
over connections and when you turn it off.</li>
<li>The syntax of the PNMRX303 message and part 4 of the PNMRX603 message
may differ from the syntax found in several documents on the net.</li>
</ul>
#% Delorme
[EarthMate USB]
type = device
vendor = Delorme
packaging = mouse
techdoc = http://www.delorme.com/earthmate/default.asp
uses = SiRF-2
interfaces = USB
usbchip = Cypress M8 CY7C64013
tested = 2.5
discontinued = True
notes = This was the replacement for the old Zodiac version that spoke
Rockwell binary protocol; it in turn has been discontinued. Some
other sentences can be enabled. Requires a 2.6.10 or better
kernel for the Cypress USB-HID support.
[EarthMate]
type = device
vendor = Delorme
packaging = mouse
uses = Zodiac
interfaces = RS-232
discontinued = True
rating = good
notes = This device was supported by GPSD up to release 2.96, but some bug
introduced after that interfered with it until support was restored
after 3.6.
[TripMate]
type = device
vendor = Delorme
packaging = mouse
techdoc = http://vancouver-webpages.com/peter/tripmate.faq
uses = Zodiac
interfaces = RS-232
discontinued = True
notes = Discontinued sometime before November 1998.
#% Digital Yacht
[AIT250]
type = device
vendor = Digital Yacht
engine = unknown
packaging = handsfree
techdoc = http://www.yachtronics.com/yachtronics/manuals/DIGITAL%20YACHT%20AIT250%20OPERATION.pdf
interfaces = RS-232
discontinued = False
tested = regression
rating = good
submitter = Jan Veninga <[email protected]>
notes = Both a Class B AIS transceiver and a GPS.
logs = ait250.log
#% Eurotech
[Com-1289]
type = device
vendor = Eurotech
packaging = OEM module
techdoc = http://www.eurotech.fi/products/COM-1289.html
engine = FastraX iTrax03
interfaces = RS-232
tested = regression
rating = good
submitter = Simon Le Pape <[email protected]>
#% EuroTronics
[Blumax GPS009]
type = device
vendor = EuroTronics
packaging = mouse
techdoc = http://www.eurotronic.net/products/produktdetails/gps_receiver.html
uses = SiRF-3
interfaces = Bluetooth
configurable = insane
tested = regression
submitter = Hartmut Holzgraefe <[email protected]>
notes = Requires "-b" ... I had to totally drain the battery of the device
and let it rest for a few days before i was able to use it again
after a first attempt of using it with without "-b"
#% Fastrax
[IT520U]
type = device
vendor = Fastrax
engine = MTK
packaging = OEM module
techdoc = http://www.fastraxgps.com/showfile.cfm?guid=5861a92d-2628-4c8b-9621-058a3435edb5
date = 2011-02-21
firmware = AXN_1.30,0145,Fastrax IT500
interfaces = USB
location = Kamp Lintfort, DE, 51deg 29min N, 6deg 32min E
model = IT520
rating = good
submitter = Kai Scharwies <[email protected]>
tested = 2.95
logs = mtk-3329.log
#% Garmin
[Foretrex 201]
type = device
engine = SiRF-3
date = 2010-08-26
interfaces = RS-232
location = Ulb?lle, DK, 55.04N 10.25E
model = Foretrex 201
nmea = 3.0
notes = This device is not a conventional handfrtee unut for a car; it looks
like a bulky wristwatch and is meant for bicycle handlebars. It must
be set to NMEA output in the settings->interface page.
packaging = handset
rating = excellent
submitter = Anders Lund <[email protected]>
techdoc = http://www.garmin.com/manuals/Foretrex201_OwnersManual.pdf
tested = 2.95
vendor = Garmin
discontinued = True
logs = foretrex-201.log
[Garmin GPS 10x]
type = device
uses = SiRF-3
date = 2010-07-18
model = GPS 10x
nmea = 2.0 and 2.30
interfaces = Bluetooth
packaging = mouse
rating = excellent
submitter = David Ludlow <[email protected]>
techdoc = http://www.garmin.com/manuals/GarminMobile10forlaptops_PDAs_TechnicalSpecifications.pdf
tested = 2.95
vendor = Garmin
uses = Garmin
logs = garmin-10x.log
[Garmin GPS-15]
type = device
packaging = OEM module
vendor = Garmin
techdoc = http://www.garmin.com/products/gps15/spec.html
uses = Garmin
interfaces = RS-232
tested = 2.33
nmea = 2.0
pps = True
submitter = Jason Hecker <[email protected]>
notes = "$PGRMI,,,,,,,R" must be sent to reset the device before PPS
works; after about 5 minutes the PPS signal is detected properly
by GPSD.
[Garmin GPS-16]
type = device
packaging = mouse
vendor = Garmin
techdoc = http://www.garmin.com/products/gps16/spec.html
uses = Garmin
interfaces = RS-232
tested = 2.38
nmea = 2.0
submitter = Reported by Ron Marosko, Jr. <[email protected]>,
Amaury Jacquot <[email protected]>,
Jeff Francis <[email protected]>
notes = DGPS information in GPGGA sentence is not returned. Satellite
azimuths/elevations and magnetic variation information are not
available in binary mode. Garmin uses a nonstandard 16-bit SNR
scale for signal quality in GSA. Can be switched to NMEA 3.0
with PGRMC1. .
[Garmin GPS-17N]
type = device
packaging = mouse
vendor = Garmin
techdoc = http://www.garmin.com/products/gps17/spec.html
uses = Garmin
interfaces = RS-232
tested = regression
nmea = 2.0 or 3.0
submitter = Wojciech Kazubski <[email protected]>.
notes = The 17N has been discontinued and replaced by the 17HVS.
The interface was RS-232 but used a custom RJ-45 jack.
logs = garmin17n.log
[Garmin GPS-17HVS]
type = device
vendor = Garmin
packaging = mouse
techdoc = https://buy.garmin.com/shop/shop.do?cID=158&pID=8630
engine = unknown
interfaces = RS-232
tested = 2.37
rating = good
nmea = 2.0 or 3.0
notes = Reported by Ulrich Voigt (no email address)
[Garmin GPS-18 USB]
interfaces = USB
nmea = N/A
packaging = mouse
submitter = Gary E. Miller <[email protected]>
techdoc = http://www.garmin.com/manuals/GPS18_TechnicalSpecification.pdf
tested = 2.38
type = device
uses = Garmin
vendor = Garmin
notes = The USB version requires the Linux kernel garmin_usb driver.
usbfs is not required after gpsd version 2.39.
DOP (Dilution of Precision) information is not available (Garmin protocol
includes EPE only); gpsd uses EPE to approximate DOP. Magnetic variation
information is not available. Garmin uses a nonstandard 16-bit SNR scale.
The 18 series, unlike the 16, reports skyview via a packet 114. They will
not operate indoors and require a good sky view.
[Garmin GPS-18 (all but USB)]
interfaces = RS-232
nmea = 2.0 and 2.3
packaging = mouse
pps = True
pps_accuracy = 1us
time_offset = 0.125s
submitter = Gary E. Miller <[email protected]>
techdoc = http://www.garmin.com/manuals/GPS18_TechnicalSpecification.pdf
tested = 2.5
type = device
uses = Garmin
vendor = Garmin
notes = The RS-232 versions can emit NMEA and are found by normal autoconfiguration.
GPS-18 LVC and GPS-18 LVC/5m have PPS outputs. WAAS is supported.
The 18 series, unlike the 16, reports skyview via a packet 114. They will
not operate indoors and require a good sky view. NTP offset quoted is
at 19200bps; drops to 0.525 at 4800bps.
[GPS-25LP]
type = device
packaging = OEM module
vendor = Garmin
techdoc = http://www8.garmin.com/products/gps25/spec.html
uses = Garmin
interfaces = RS-232
nmea = 2.0
tested = regression
discontinued = True
submitter = Daniele Giangrazi <[email protected]>
notes = Discontinued embedded module.
logs = garmin25lp.log
[Garmin 38]
type = device
vendor = Garmin
packaging = handset
techdoc = http://au.geocities.com/glennbaddeley/gps/data/GPS38_OwnersManualAndTechdoc_June1997_RevB.pdf
uses = Garmin
interfaces = RS-232
rating = excellent
tested = regression
nmea = 2.0
discontinued = True
submitter = Pascal F. Martin <[email protected]>
notes = Start-of-cycle is RMC. 2-second cycle time, 1 fix per cycle.
logs = garmin38.log
[Garmin 48]
type = device
vendor = Garmin
packaging = handset
techdoc = https://buy.garmin.com/shop/shop.do?pID=85
uses = Garmin
interfaces = RS-232
nmea = 2.0
discontinued = True
rating = excellent
tested = regression
notes = Start-of-cycle is RMC. 2-second cycle time, 2 fixes per cycle, GLL
reports second fix. The 48 has been discontinued. The Garmin
12XL and 45 are nearly identical and should work as well.
Details on the Garmin proprietary protocol can be found at <a
href="http://www.garmin.com/support/commProtocol.html">here</a>.
[Garmin GPS 60]
type = device
vendor = Garmin
packaging = handset
techdoc = http://www.garmin.com/manuals/GPS60_OwnersManual.pdf
uses = Garmin
interfaces = USB, RS-232
tested = 2.33
nmea = 3.01
submitter = Diego Berge <[email protected]>
[Garmin GPS 76]
type = device
vendor = Garmin
packaging = handset
techdoc = http://www.garmin.com/manuals/GPS76_OwnersManual.pdf
uses = Garmin
interfaces = RS-232
tested = 2.39
nmea = 2.3
submitter = Sebastian Niehaus <[email protected]>,
Geoff Childs <[email protected]>
notes = The device has a four pin socket described by Garmin as a serial
interface. Connection to a standard 9 pin RS-232 computer socket
is made using the special adaptor lead supplied by Garmin. Sebastian
Niehaus says it annunces "Software Version 3.70". Geoff Childs adds:
"The Garmin GPS 76 comms MUST be set to 'NMEA'. The kernel module
garmin_gps is not needed and should not be specially loaded."
[Geko 201]
type = device
vendor = Garmin
packaging = handset
techdoc = http://www.garmin.com/manuals/Geko201_OwnersManual.pdf
uses = Garmin
interfaces = RS-232
tested = regression
nmea = 3.0
submitter = Jose Luis Domingo Lopez <[email protected]>
notes =
logs = garmin-geko201.log
[eTrex Vista]
type = device
vendor = Garmin
packaging = handset
techdoc = http://www.garmin.com/manuals/eTrexVista_OwnersManual.pdf
uses = Garmin
interfaces = RS-232
tested = 2.32
nmea = 3.0
submitter = Reed Hedges <[email protected]>
notes =
[Nuvi 650]
type = device
vendor = Garmin