summaryrefslogtreecommitdiff
path: root/gpsmon.c
Commit message (Collapse)AuthorAgeFilesLines
* Egg-on-my-face build and compiler warning fixes.Eric S. Raymond2013-10-171-10/+10
|
* splint cleanup.Eric S. Raymond2013-10-141-5/+5
|
* Don't block more packet display while accepting commands.Eric S. Raymond2013-10-121-16/+24
|
* Make gpsmon quit cleanly on 'q' again.Eric S. Raymond2013-10-111-1/+5
|
* More clarifications.Eric S. Raymond2013-10-101-3/+3
|
* Clarifying comment.Eric S. Raymond2013-10-101-1/+5
|
* Renove an unused cursor move.Eric S. Raymond2013-10-101-6/+4
|
* Refactoring step.Eric S. Raymond2013-10-101-22/+17
|
* Narrow a variable's scope. All regression tests pass.Eric S. Raymond2013-10-101-2/+1
|
* splint cleanup.Eric S. Raymond2013-10-101-8/+8
|
* Handle error returns from gpsd_await_data() a bit more gracefully.Eric S. Raymond2013-10-101-2/+9
|
* Use gpsd_multipoll() for simpler code.Eric S. Raymond2013-10-101-77/+59
|
* readpkt() no longer returns anything but the packet length; simplify.Eric S. Raymond2013-10-101-7/+6
|
* Fix a display glitch.Eric S. Raymond2013-10-101-0/+1
|
* Refactoring step.Eric S. Raymond2013-10-101-16/+23
|
* Reduce amount of screen painting.Eric S. Raymond2013-10-101-13/+22
|
* Repaint less often.Eric S. Raymond2013-10-101-1/+4
|
* Refactoring step.Eric S. Raymond2013-10-101-19/+24
|
* Minor command-handling fix.Eric S. Raymond2013-10-101-1/+4
|
* More informative error message.Eric S. Raymond2013-10-091-2/+2
|
* splint cleanup.Eric S. Raymond2013-10-091-0/+2
|
* Try for more usefyl sudden-death messages.Eric S. Raymond2013-10-091-3/+6
|
* promptlen needs to ne gloal for monitor_complain to work.Eric S. Raymond2013-10-091-5/+5
|
* Refactor gpsmon - moving towards using multipoll.Eric S. Raymond2013-10-091-281/+291
|
* splint cleanup.Eric S. Raymond2013-10-091-2/+0
|
* Introduce a mode option so gpscotl can be less intrusive than gpsd.Eric S. Raymond2013-10-091-1/+1
|
* Cosmetic changes.Eric S. Raymond2013-10-071-4/+4
|
* We can finally see the UBX mode switcher being shipped.Eric S. Raymond2013-10-071-41/+39
|
* Remove overcomplicated type-switching logic.Eric S. Raymond2013-10-071-10/+3
|
* Fix a minor linkage failure.Eric S. Raymond2013-10-051-0/+8
| | | | The fact that this happened might indicate a build system failure.
* splint cleanup. All regression tests pass.Eric S. Raymond2013-10-051-8/+8
|
* Remove flicker when receiving AIVDM messages in -n mode.Reinhard Arlt2013-10-051-21/+25
|
* Do things in a more natural order. All regressions pass.Eric S. Raymond2013-10-041-2/+1
|
* We can now monitor low-level string sends through gpsmon.Eric S. Raymond2013-10-041-4/+11
| | | | Now we'll know exactly what's being sent on a UBX mode change.
* More splint cleanup.Eric S. Raymond2013-10-041-5/+5
|
* Merge branch 'master' of git://git.sv.gnu.org/gpsdReinhard Arlt2013-10-031-8/+23
|\
| * Generalize a logging function.Eric S. Raymond2013-10-021-5/+11
| |
| * Get the prompt placement right.Eric S. Raymond2013-10-021-1/+4
| |
| * When -t forces a driver type, show it in the gpsmon prompt.Eric S. Raymond2013-10-021-2/+8
| |
* | Let gpsmon -n survive AIVDM messages.Reinhard Arlt2013-10-021-1/+4
|/
* Change gpsd_report to no longer use a global. All regression tests pass.Eric S. Raymond2013-09-291-4/+4
| | | | | | | | This is a large, ugly change. But without it we can't troubleshoot the ICP/IP-source initialization bug properly - colliding definitions of gpsd_report() were interfering with error reporting early in gpsd runs. More cleanup work remains to be done, but at least this is working.
* Fix static-checker warnings. All regression tests pass.Eric S. Raymond2013-04-301-1/+1
| | | | | cppchecker now finds variables that could have reduced scope; that's most of these.
* More informative error message.Eric S. Raymond2012-10-231-1/+2
|
* Nuke trailing whitespace in C source.Eric S. Raymond2012-09-071-4/+4
|
* Remove unnecessary includes of termios.h .ukyg9e5r6k7gubiekd62012-09-071-1/+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-071-1/+1
| | | | | | | | 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-071-9/+9
| | | | Note there are some exit(2) instances we bneed to decide what to do with.
* Yet more cppcheck fixups. All regression tests pass.Eric S. Raymond2012-05-181-1/+1
|
* Add -n option to read nmea183 messeages from gpsdReinhard Arlt2012-04-261-5/+20
|
* GPS monitor for Garmin Serial binary protocol.Michael Tatarinov2011-10-241-4/+12
| | | | Signed-off-by: Eric S. Raymond <esr@thyrsus.com>