summaryrefslogtreecommitdiff
path: root/dgnss.c
Commit message (Collapse)AuthorAgeFilesLines
* RTCM104v3 packet detection. Eric S. Raymond2008-06-301-2/+2
| | | | | This is without checksum support, and the daemon code does not do anything with the RTCM data yet.
* More preparation for RTCM 3. No behavior changes. All regression tests pass.Eric S. Raymond2008-06-271-1/+1
|
* Sigh...avoid harmless but *annoying* name collision...Eric S. Raymond2006-11-021-2/+2
| | | | | between our LOG_ERR and the syslog() macro by changing ours to LOG_ERROR.
* Define uniform log level macros.Eric S. Raymond2006-11-021-3/+3
| | | | | | | | | | | | | | | | | | | | | | This patch defines a uniform set of log levels and changes all gpsd_report() instances to use them. In most cases (I'd say about 80%) this will make no observable difference, as the numeric log levels the code was using were not too badly inconsistent anyway. The new log level macros are defined and described in gpsd.h. The main thing I wanted was to be able to consistently force dumping of all I/O to devices and clients with -D 4. Some drivers didn't honor this. One or two still may not through lack of an internal write() wrapper that does logging; there will need to be some followup changes. Level 0 messages are always displayed, but to make the semantics clearer there are two defines LOG_ERR and LOG_SHOUT. Level 5 is still super-raw I/O reporting. Level 6 and 7 messages are tagged RAW_LOG+1 and RAW_LOG+2; I was particularly careful about these because we have one report of a user who is getting good results from Garmin serial only at -D 7 or up, and perish forbid I should interfere with that bug being found.
* Rename config.h so it can be installed as gpsd_config.h...Chris Kuethe2006-10-261-0/+1
| | | | | | ...for those who want to build their own apps linked against libgps and want the headers to work. Works on OpenBSD, tested by Jeff Francis on OS X and Linux
* Partial splint cleanup.Eric S. Raymond2006-10-261-2/+2
|
* Prevent gpsd from spinning if the dgpsip stream goes away.Chris Kuethe2006-09-281-4/+10
| | | | Reported by Neal Probert on gpsd-dev
* Add subversion ID tags near the beginning of every file.Chris Kuethe2006-09-211-0/+1
| | | | First line where possible, second line for scripts called with #!
* Allow this to compile when only the SiRF protocol is enabledChris Kuethe2006-08-171-0/+4
|
* The -d option is no longer necessary.Eric S. Raymond2006-07-231-0/+9
| | | | | DGPSIP and NTRIP URLS are recognized when they occur in arguments. Currently only a single such source is allowed.
* Ville Nuorvala merges some common code.Eric S. Raymond2006-06-091-5/+9
|
* Add dgnss.c, which should have been checked in with the NTRIP support.Eric S. Raymond2006-06-071-0/+76
Also check in the heading patch under -DHEADING_FIX.