summaryrefslogtreecommitdiff
path: root/monitor_italk.c
Commit message (Collapse)AuthorAgeFilesLines
* SPDXify the licerse references.Eric S. Raymond2018-03-081-1/+1
|
* Retire splint from our set of static analyzers.Eric S. Raymond2015-03-301-2/+0
| | | | | | | | | | | | | | | | | | | The proximate cause was that we've been seing emission of error messages that were randomly and disturbingly variable across different environments - notably Raspbian and Gentoo splint gave nontrivially different results than Ubuntu 14.10 splint. And this was *not* due to Ubuntu patches! A pristine splint built from the 3.1.2 tarball on Ubuntu didn't match the Raspbian and Gentoo results either. But this has been coming for a while. Easy access to more modern static analyzers such as coverity, scan-build and cppcheck has been decreasing the utility of splint, which is unmaintained and somewhat buggy and not easy to use. Only file not cleaned is ppsthread.c, because Gary has been working on it during this cleanup. All regression tests pass. PPS observed live on GR601-W.
* OSX needs string.h for strlcat()Gary E. Miller2015-03-091-0/+1
| | | | Not sure why gpsd.h includes string.h only if strlcat() undefined.
* Remove unneeded conditional.Eric S. Raymond2015-03-021-5/+0
|
* Always use sizeof to get array sizeZbigniew Chyla2015-01-131-1/+1
| | | | | | Don't use constant/expression from an array's definition when referring to its size. Eliminates redundancy and avoids problems when array size changes. The change doesn't affect generated code.
* Structure member name change: packet -> lexer. No logic changes.Eric S. Raymond2014-08-271-2/+2
| | | | All regression tests pass.
* Rename and rationalize driver table instances. No logic changes.Eric S. Raymond2013-11-121-2/+2
|
* Type ckeanliness fixup.Eric S. Raymond2012-09-071-1/+1
|
* Replace 'ushort' with 'unsigned short'.Eric S. Raymond2012-09-071-15/+15
|
* scan-build and splint cleanup. All regression tests pass.Eric S. Raymond2011-03-291-2/+2
|
* Scan-build and splint cleanup. All regression tests pass.Eric S. Raymond2011-03-281-2/+4
|
* fix build on openbsdChris Kuethe2011-01-121-0/+4
|
* More deheader testing.Eric S. Raymond2011-01-121-1/+0
|
* Rename the bits.h macros to be explicit about operand length.Eric S. Raymond2010-12-261-41/+41
| | | | | | With most machines being 64-bit now, the assumption that "word" = 16 bits and "long" = 32 bits is increasingly archaic. This commit removes it from our naming conventions.
* deheader broke the build againChris Kuethe2010-12-221-0/+1
|
* More header portability audting with a new version of deheader.Eric S. Raymond2010-12-221-4/+1
|
* Still more simplification of configuration and header handling.Eric S. Raymond2010-12-141-8/+0
|
* Put back missing headers that break the buildChris Kuethe2010-12-021-0/+2
|
* Unused-header removals by deheader. All regression tests pass.Eric S. Raymond2010-12-011-8/+0
|
* Reindent monitor mdules. Live test of gpsmon works.Eric S. Raymond2010-04-141-195/+196
|
* Vanish away Id and Rev $ keywords, git won't expand them to anything useful.Eric S. Raymond2010-03-131-2/+1
|
* Copyright stamps everywhere. No code changes.Eric S. Raymond2010-03-111-1/+5
|
* Include the whole config file in gpsd.h.Eric S. Raymond2009-11-201-0/+1
| | | | | | | That is, instead of sectioning out two little config defines and putting them in. This makes gpsd.h self-copntained (e.g. in case it gets installed as a library header) and means we can get rid of most inclusions of it.
* Fix some whitespace glitches found while experimenting with indent(1).Eric S. Raymond2009-11-171-4/+4
| | | | All regression tests pass.
* In the wake of the change to use only C99 fixed-length types... Eric S. Raymond2009-10-261-16/+16
| | | | ...splint needs some pacifying. This is part 1. All regressions pass.
* Some things splint just has to be told to shut up about.Eric S. Raymond2009-03-061-0/+2
|
* This finishes cleanup of the splint type warnings...Eric S. Raymond2009-03-061-9/+9
| | | | ...now to figure out what's going on with its storage-class complaints.
* Partial splint cleanup, and a fix for a real bug splint caught...Eric S. Raymond2009-03-061-10/+10
| | | | (reference to wrong variable).
* shrink down the NAV_FIX paneChris Kuethe2009-03-061-7/+7
|
* Space Vehicle (SV) is not right here. Chris Kuethe2009-03-051-1/+1
| | | | Receivers care about the Pseudo-Random Noise (PRN) code
* a better way to determine how many satellites were usedChris Kuethe2009-03-041-1/+2
|
* The itrax03 is a 12-channel receiver. so say all the spec sheets... Chris Kuethe2009-03-041-6/+6
| | | | | yet i'm getting at least 13 SV reports, and that's not counting WAAS birds. maybe they meant "12 GPS channel + a few more for WAAS"
* fix decoding of used satellites.Chris Kuethe2009-03-041-6/+11
| | | | wipe unused/invisible satellites from the PRN_STATUS pane
* fix another bug in the italk decoder. Chris Kuethe2009-03-041-1/+3
| | | | | | bad PRN_STATUS messages can cause gpsd to run off the end of allocated space for SV info leading to a bus error later on when we try recalculate the DOPs.
* approaching useful.Chris Kuethe2009-03-041-7/+143
|
* Parse the satellite statusChris Kuethe2009-03-031-9/+68
|
* Monitor API has changed, so clean out comments in the three stub monitors.Eric S. Raymond2009-03-031-98/+0
|
* Hook up the framework for a few more monitor typesChris Kuethe2009-03-031-0/+152