• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Garmin/H24-Mar-2009-1,049829

NMEA/H24-Mar-2009-485271

examples/H03-May-2022-166126

t/H24-Mar-2009-168120

Base.pmH A D09-Sep-20061.5 KiB7349

COPYINGH A D03-Dec-20006 KiB13299

ChangesH A D24-Mar-20092.1 KiB6353

Garmin.pmH A D24-Mar-200912.6 KiB533281

MANIFESTH A D31-Dec-2007557 2120

Makefile.PLH A D24-Mar-20091.3 KiB5946

NMEA.pmH A D07-Mar-20094 KiB20995

READMEH A D06-Dec-20051.2 KiB3625

Serial.pmH A D31-Dec-20077 KiB277168

TODOH A D06-Dec-2005482 1613

README

1perl-GPS
2
3This is a perl interface to a GPS receiver that implements the Garmin
4protocol.
5
6Several functions are still missing. The Garmin device support list is
7still very thin, but adding new devices should be fairly easy.
8
9You require perl 5.005 or later to use this library. On Win32, the
10Win32::SerialPort module is required. On Unix, the Device::SerialPort
11module is recommended (though not strictly required). On all systems a
12module implementing "weaken" (either WeakRef or Scalar::Util, the
13latter is standard in perl 5.8.0) is recommended to avoid filehandle
14and memory leakage because of circular references. There is no
15"weaken" support for perl 5.005 available, so be prepared for these
16leakages on older systems.
17
18You install the library by running these commands:
19
20   perl Makefile.PL
21   make
22   make test
23   make install
24
25(Replace "make" by "nmake" on Windows systems).
26
27Please report any bugs/suggestions to Joao Gon�alves
28<joaop@iscsp.utl.pt> and Slaven Rezic <srezic@cpan.org>.
29
30All files contained in this installation are Copyright (c) 1999 Joao Gon�alves
31unless otherwise specified. All rights reserved.
32
33This library is free software; you can redistribute it and/or modify it under
34the same terms as Perl itself.
35
36