summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-03-18 13:57:13 -0400
committerEric S. Raymond <esr@thyrsus.com>2011-03-18 13:57:13 -0400
commitcf684b2a9909561a537a5189c4a2b6a76e3c105d (patch)
tree52c6271ecb6331cf77a0cf3a2db00df194322455 /www
parentcd86d4410bcff417de15a0fc5eb905ef56c26596 (diff)
downloadgpsd-cf684b2a9909561a537a5189c4a2b6a76e3c105d.tar.gz
Sync the Python and C++ bindings to the C one. Document it properly.
Diffstat (limited to 'www')
-rw-r--r--www/client-howto.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/www/client-howto.txt b/www/client-howto.txt
index 3dbf341f..e3610c2e 100644
--- a/www/client-howto.txt
+++ b/www/client-howto.txt
@@ -350,6 +350,8 @@ Blocking check with timeout to see in input is waiting.
Nonblocking read for data from the daemon.
|gps_close() |gpsmm.~gpsmm() |gps.close() |
Close the daemon socket and end the session.
+|gps_data() |gpsmm.data() |gps.data() |
+Get the contents of the client buffer.
|gps_enable_debug() |gpsmm_enable_debug() | |
Enable debug tracing. Only useful for GPSD developers.
|gps_clear_fix() |gpsmm.clear_fix() | |
@@ -377,7 +379,7 @@ is on, which is the library's way of telling you that at least one
complete JSON response has arrived since the last read.
Data may accumulate on the blackboard over multiple reads,
-with new TPV reports overwriting old ones;it is guaranteed that
+with new TPV reports overwriting old ones; it is guaranteed that
overwrites are not partial. Expect this pattern to be replicated
in any compiled language with only fixed-extent structures.