summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Mapping NMEA-ID (33..64) to SBAS PRN and minor refactoring.Michael Tatarinov2012-10-234-11/+25
| | | | | | This change required a regression-test rebuild. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Merge branch 'master' of git://git.sv.gnu.org/gpsdReinhard Arlt2012-10-112-1/+5
|\
| * Add udev support for for MediaTek USB devices.Michael Tatarinov2012-10-111-0/+2
| | | | | | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
| * Don't check exclusion for bluetooth devices.Michael Tatarinov2012-10-101-1/+3
| | | | | | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* | Add -S (for scaled flag) option to gpspipe.Reinhard Arlt2012-09-262-1/+8
|/
* Label fixed.Reinhard Arlt2012-09-261-1/+1
|
* NMEA2000 AIS decoding improved.Reinhard Arlt2012-09-261-20/+63
|
* Pacify splint in driver_nmea2000.c again.Reinhard Arlt2012-09-251-120/+120
|
* NMEA2000 AIS decoding improved.Reinhard Arlt2012-09-241-21/+32
|
* More NMEA2000 AIS messages.Reinhard Arlt2012-09-241-2/+87
|
* Merge branch 'master' of git://git.sv.gnu.org/gpsdReinhard Arlt2012-09-2313-43/+58
|\
| * Fix a dangerous typo caught by Coverity. All regression tests pass.Eric S. Raymond2012-09-221-1/+1
| |
| * Cosmetic fix. All regression tests and code audits pass.Eric S. Raymond2012-09-221-14/+14
| |
| * Lose the assumption that socket_t is an integer.Eric S. Raymond2012-09-2211-27/+34
| |
| * Fix an error in the AIVDM/AIVDO description and update the news.Eric S. Raymond2012-09-222-3/+11
| |
* | More NMEA2000 AIS messages.Reinhard Arlt2012-09-231-17/+79
|/
* Some NMEA2000 AIS cleanup.Reinhard Arlt2012-09-221-66/+95
|
* Fix a misleading error message.Eric S. Raymond2012-09-181-1/+1
|
* Address Savannah bug #37377: Device hook script path is incorrectEric S. Raymond2012-09-181-1/+1
|
* Even conditional -Werror won't fly. Works under glibc-2.13, fails under 2.15...Eric S. Raymond2012-09-171-4/+0
| | | | ...due apparently to a broken FD_SET macro.
* Partially reinstate -Werror.Eric S. Raymond2012-09-171-3/+3
|
* Back off using -Werror, it works on x86 but breaks on some other ports.Eric S. Raymond2012-09-171-3/+2
|
* Add information on AIS-SART.Eric S. Raymond2012-09-161-3/+13
|
* Fix typo.Gary E. Miller2012-09-121-1/+1
|
* Corrects a minor bug in the description of the Navigation Message ROT field.Eric S. Raymond2012-09-101-4/+7
|
* Shipping through localhost works.Eric S. Raymond2012-09-101-2/+2
|
* Adderess Savannah bug #36984: xmlto support broken.Eric S. Raymond2012-09-101-2/+3
|
* Repair the scons production for the internals manual.Eric S. Raymond2012-09-102-1/+1
|
* I wonder what I was thinking when I wrote these productions.Eric S. Raymond2012-09-091-2/+2
|
* gpsd_get_speed_old usage was lost on exitJon Schlueter2012-09-091-1/+1
| | | | | | | in the gpsd_get_speed conversion where we lost resetting the speed to the old speed on exit in serial.c Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Appease the Emacs highlighting gods.Eric S. Raymond2012-09-091-1/+1
|
* More features for cansetup, help added.Reinhard Arlt2012-09-081-12/+55
|
* Another regression test, for the nl551e.Eric S. Raymond2012-09-073-16/+837
|
* Note the problem with some SiRFs shipping garbled MID52s.Eric S. Raymond2012-09-071-0/+21
|
* Added a regression test for the Globalasat MR-350p.Eric S. Raymond2012-09-073-2/+630
|
* Type ckeanliness fixup.Eric S. Raymond2012-09-071-1/+1
|
* Nuke trailing whitespace in C source.Eric S. Raymond2012-09-0769-533/+533
|
* Replace 'ushort' with 'unsigned short'.Eric S. Raymond2012-09-073-48/+48
|
* Compile most code with -Werror.ukyg9e5r6k7gubiekd62012-09-071-0/+3
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Remove unnecessary includes of termios.h .ukyg9e5r6k7gubiekd62012-09-077-7/+0
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Replace exit(2) with exit(EXIT_FAILURE). None of these were documented.Eric S. Raymond2012-09-075-11/+11
| | | | | | | | This is a separate commit so we can revert it someday if making the distinction again comes to seem more important than struct mingw portability. All regression tests pass.
* Replace exit({0,1}) with exit(EXIT_{SUCCESS,FAILURE})Eric S. Raymond2012-09-0716-96/+96
| | | | Note there are some exit(2) instances we bneed to decide what to do with.
* Un-break the regression tests while we figure out how to reapply.Eric S. Raymond2012-09-071-1/+1
|
* Use strerror() rather than a generic error message.ukyg9e5r6k7gubiekd62012-09-071-1/+1
| | | | | | | Not thread-safe, but at least it has a chance of being useful in problem diagnosis. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Silence another cppcheck warning.ukyg9e5r6k7gubiekd62012-09-071-1/+1
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Comply strictly with strict-aliasing rules by using memcpy...ukyg9e5r6k7gubiekd62012-09-071-9/+24
| | | | | | | | ...rather than using type-punning pointer casts. With optimization this will generate similarly-performing or even identical code on most architectures/compilers. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Silence cppcheck warning. Limits year values to 10^9 - 1.ukyg9e5r6k7gubiekd62012-09-071-2/+2
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Silence some pointer-signedness warnings.ukyg9e5r6k7gubiekd62012-09-071-8/+8
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* Use UNUSED rather than uselessly setting a parameter, which triggers a ↵ukyg9e5r6k7gubiekd62012-09-071-4/+1
| | | | | | compiler warning. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
* sockaddr_t only needs to accomodate a sockaddr_in6 if IPV6_ENABLE.ukyg9e5r6k7gubiekd62012-09-071-0/+2
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>