summaryrefslogtreecommitdiff
path: root/gpsd.xml
Commit message (Collapse)AuthorAgeFilesLines
* On the other hand, watchers *should* get notified when the device pool changes, Eric S. Raymond2009-08-301-25/+3
| | | | e.g. both on device additions and device deactivations.
* Finally give ?TPV; and ?SKY; the axe. Eric S. Raymond2009-08-301-135/+134
| | | | | | | Dealing with all the race conditions implied by the fact that you don't necessarily have a device bound when these are called is just too nasty - it's a maintainability problem and would have been a support nightmare.
* Documentation updates.Eric S. Raymond2009-08-261-2/+7
|
* Unify CONFIGDEV and DEVICE responses.Eric S. Raymond2009-08-251-138/+96
|
* Introduce and document optional "enable" in ?WATCH.Eric S. Raymond2009-08-241-0/+7
|
* Arrange for clients to see a VERSION response when they first connect.Eric S. Raymond2009-08-231-0/+3
|
* Correctly read JSON ERROR responses in the client library.Eric S. Raymond2009-08-231-0/+27
|
* Checkpoint before major surgery on gps.h. All regression tests pass.Eric S. Raymond2009-08-221-2/+2
|
* Parsing of JSON VERSION response, with unit test.Eric S. Raymond2009-08-191-2/+2
|
* Ship device flags as integer rather than string list.Eric S. Raymond2009-08-191-5/+40
|
* Correct an example.Eric S. Raymond2009-08-181-2/+2
|
* More work on client-side JSON.Eric S. Raymond2009-08-181-3/+9
|
* Make the two different kinds of DEVICE notation conformable.Eric S. Raymond2009-08-181-0/+6
|
* Step one in making the client library speak new protocol.Eric S. Raymond2009-08-181-1/+1
|
* Add cycle-time reporting and setting to new protocol. Eric S. Raymond2009-08-171-0/+14
| | | | | | Steps towards making gpsctl work with new protocol. Incidentally, fixes a bug where min_cycle was not reported correctly in the C command.
* Big simplification of GPSD_NG interface. Eric S. Raymond2009-08-171-90/+6
| | | | | CONFIGCHAN is gone, WATCH now listens to everything and sets as per-user policy bits things that used to be per-channel.
* Clean up NG command parsing. Only require one introducer per request line.Eric S. Raymond2009-08-121-7/+7
|
* Multiple GPSD-NG commands per line are now supported.Eric S. Raymond2009-08-121-4/+5
|
* Remove an obsolete sentence.Eric S. Raymond2009-08-111-7/+4
|
* GPSD-NG commands without object arguments now require an ending ';' delimiter.Eric S. Raymond2009-08-111-20/+21
| | | | Preparation for allowing multiple commands per line.
* Abolish device classes. Eric S. Raymond2009-08-101-5/+10
| | | | | | That way of doing things coped poorly if, for example, NMEA and AIVDM packets were reported over the same wire. Instead, have ach device track the packet types it has actually seen and dispatch on that.
* Experimental 'scaled' attribute for AIS reporting; needs testing.Eric S. Raymond2009-08-051-0/+7
|
* Make CONFIGDEV reporting work, and document it.Eric S. Raymond2009-08-051-4/+91
| | | | Parameter setting is not yet implemented.
* Major steps towards CONFIGDEV. (Not yet working.)Eric S. Raymond2009-08-031-2/+15
|
* CONFIGCHAN parsing is working and documented. Eric S. Raymond2009-08-011-0/+72
| | | | Policy bits are not yet set correctly.
* No longer necessary to document GPSD-NG as though it's in the distant future.Eric S. Raymond2009-07-301-5/+10
|
* New-style notifications on device status changes.Eric S. Raymond2009-07-301-8/+88
|
* Improve some progress messages... Eric S. Raymond2009-07-301-2/+2
| | | | ...so the distinction between device slots and fds is clearer.
* Implemented ?VERSION. Eric S. Raymond2009-07-301-40/+566
| | | | | Documented the so-far-mplemented commands in GPSD-NG: ?TPV, ?SKY, ?VERSION, ?DEVICES, ?WATCH.
* 'G' command no longer has side effects. Eric S. Raymond2009-07-251-5/+7
| | | | | | | | All commands other than B R W X force assignment of a GPS device. The 'requires' member is gone from the subscriber structure. This change will have no effect on applications using the client library, and eliminates te possibility that a one-shot command requiring a GPS will fail because it binds the wrong device type.
* AIS dumping is now under the control of the watcher variable.Eric S. Raymond2009-07-241-1/+4
|
* Add AIS as a supported type for the 'G' command.Eric S. Raymond2009-07-231-4/+4
| | | | (Note, this is not actually implemented yet, that's the next step.
* Y message can have more than 12 satellites. Reported by Toget on IRC.Chris Kuethe2009-07-071-6/+8
|
* GPSD can now be a gpsd clientChris Kuethe2009-07-051-13/+16
| | | | | | | | that is, it can connect to and relay data from other gpsd instances. Sample usage # gpsd -S 12000 -n 'gpsd://localhost:2947/?raw' # cgps 127.0.0.1:12000
* Remove deprecation warning on -n, dev list traffic shows the powerEric S. Raymond2009-03-251-3/+1
| | | | drain really matters.
* .cycle_chars is gone, replaced by min_cycle.Eric S. Raymond2009-03-071-4/+33
|
* Simplify the way ALLOW_RECONFIGURE works.Eric S. Raymond2009-03-061-1/+1
| | | | | | | | | | It now conditions out the speed-switcher, mode-switcher, and rate-switcher methods of the driver structure entirely. This makes it possible to condition out whole functions (rather than small bits that do device writes) almost everywhere. Build tested with ALLOW_RECONFIGURE off. This improvement should make the embedded people happy.
* Add an -l option to gpsd that lists its compiled-in drivers and exits.Eric S. Raymond2009-03-051-5/+23
|
* Document the fact that parity and stopbit setting is now supported but dicy.Eric S. Raymond2009-03-021-0/+8
|
* Full support for setting parity and stop bits.Eric S. Raymond2009-03-021-5/+18
| | | | | Needs to be tested for non-8N1 modes on the devices that can support it: SiRF, UBX, Zodiac.
* Documentation updates anticipating the v4 protocol change.Eric S. Raymond2009-02-131-2/+2
|
* Markup fix.Eric S. Raymond2009-02-131-6/+5
|
* Add some documentation on how to cope with the upcoming API change.Eric S. Raymond2009-02-121-4/+14
|
* Major and minor API revision numbers need to be returned by L command.Eric S. Raymond2009-02-121-2/+4
|
* Address tracker bug #14196.Eric S. Raymond2009-02-111-4/+6
| | | | | | Fix the obsolete 'e' command to work with the buffering logic. We still don't report epe, as doing so would require some structure changes in gps.h and a major library revision.
* The 'g' mode switch command now requires, and returns, 'rtcm104v2'...Eric S. Raymond2009-01-301-3/+7
| | | | | ...rather than 'rtcm104'; this is design forward for when RTCM104v2 is fully working.
* Update the informal supported-devices list on the GPSD man page.Eric S. Raymond2009-01-301-11/+7
|
* fix a bare '&' to make this parse. also, expand the UERE acronymChris Kuethe2009-01-091-4/+4
|
* Experimental code for sending hexified binary over the control channel.Eric S. Raymond2009-01-091-0/+4
|
* Fix UERE factors for the right 95% confidence level.Eric S. Raymond2009-01-051-3/+3
|