summaryrefslogtreecommitdiff
path: root/cgps.c
Commit message (Collapse)AuthorAgeFilesLines
* splint cleanup.Eric S. Raymond2007-12-131-40/+42
|
* Fix patch for update_compass_panel() by Petr Slansky.Eric S. Raymond2007-12-121-55/+56
|
* A bit of refactoring.Eric S. Raymond2007-12-121-5/+3
|
* Fix patch from Petr Slansky.Eric S. Raymond2007-12-111-28/+23
|
* Fix to time conversion by Petr Slansky; passes all stable regressions.Eric S. Raymond2007-12-111-2/+2
| | | | Also, change a formal from int to size_t appropriately.
* More splint cleanup.Eric S. Raymond2007-12-051-0/+2
|
* slightly refactor cgps to move the window setup code. unless jeff beatsChris Kuethe2007-10-151-146/+150
| | | | me to it, i will eventually make cgps cope with window size changes.
* whitespace cleanupChris Kuethe2007-10-151-80/+80
|
* POSIX says getmaxyx is already (void).Chris Kuethe2007-03-271-1/+1
| | | | | http://www.opengroup.org/onlinepubs/007908799/xcurses/getmaxyx.html >From Greg Troxel
* Removed the entire title line. Jeff Francis2007-01-241-38/+11
| | | | | | Of little value, just takes up valuable screen real estate. First in a long line of new cgps tweaks, now that I have some hacking time again...
* a better way to use ncurses, if you've got it.Chris Kuethe2006-12-151-2/+6
|
* Typo. 'dgps' is not the same as 'gpsd'...Jeff Francis2006-12-041-1/+1
|
* Added error estimate fields back into cgps per ESR's request.Jeff Francis2006-11-211-41/+54
| | | | | | Made them "discardable" based on window size (ie, these fields are not taken into account when calculating minimum window size, and are silently thrown out if the window is not big enough to display them).
* When the display is 80x24, don't display the title line...Jeff Francis2006-11-141-1/+1
| | | | | ...allowing two lines of scrolling raw data. Short-term fix for the bigger problem of balancing satellite display vs. raw data display.
* Zero the private drive storage at device-activate time...Eric S. Raymond2006-11-131-3/+3
| | | | ...so we don't see stale data. Also, some splint cleanup.
* Big cgps front end rewrite from Jeff Francis.Eric S. Raymond2006-11-121-152/+305
|
* Petry Slansky's patch to widen the subtype window a bit.Eric S. Raymond2006-11-111-3/+3
|
* Fix sat display for Garmins. Thanks to Jeff Francis.Gary E. Miller2006-11-101-34/+9
|
* Compiler-warning and splint cleanup.Eric S. Raymond2006-11-101-3/+5
|
* Updated cgps with support for device dependent behaviour.Chris Kuethe2006-11-071-80/+283
| | | | >From Jeff Francis, plus a couple of cleanups from me.
* Client code cleanup and simplification.Eric S. Raymond2006-10-301-17/+5
| | | | | The new sprintf(3)-like behavior of gps_query() makes some things easier. Turn off smoothing in the xgps client by default.
* cgps.c no longer needs to declare UNUSED. it's in gpsd_config.h now.Eric S. Raymond2006-10-291-7/+0
|
* Rename config.h so it can be installed as gpsd_config.h...Chris Kuethe2006-10-261-1/+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
* Hush more compiler warningsChris Kuethe2006-10-261-3/+4
|
* Don't print floating point values without checking them for NaNChris Kuethe2006-10-211-3/+3
|
* Clear displayed fields a little better on loss of fix. From Petr SlanskyChris Kuethe2006-09-231-2/+2
|
* Add subversion ID tags near the beginning of every file.Chris Kuethe2006-09-211-1/+1
| | | | First line where possible, second line for scripts called with #!
* The -o option was removed.Chris Kuethe2006-09-131-1/+0
|
* Declare static some variables that don't need to be exported.Eric S. Raymond2006-09-081-4/+3
|
* New version that copes with >12 channels better, by Jeff Francis.Eric S. Raymond2006-09-081-360/+384
|
* Don't let cgps spin if read fails. Prompted by Petr Slansky on gpsd-dev.Chris Kuethe2006-09-041-1/+2
|
* Stelian Pop's cleanups for the J command.Eric S. Raymond2006-09-031-4/+0
|
* Declare prototypes for strlcpy.Eric S. Raymond2006-08-221-0/+1
|
* splint cleanup after CK's strcat()/strlcopy() cleanup.Eric S. Raymond2006-08-201-0/+2
|
* String safety, courtesy of snprintf, strlcat and strlcpy.Chris Kuethe2006-08-191-4/+6
| | | | | | | GPSD is now free from the often-misused strcat, strcpy and sprintf. Future code should not use unbounded string functions. Glibc users, please verify that the integrated strlcat and strlcpy are correctly linked in.
* Enable 'j' command in cgps.Eric S. Raymond2006-08-181-0/+16
|
* Eliminate -v option.Eric S. Raymond2006-06-181-5/+4
|
* Change -v to -V for Verbose optionGary E. Miller2006-03-131-2/+1
|
* Rename the xgps manual page.Eric S. Raymond2006-03-021-17/+16
|
* Commits from the Caribbean (II) 18.836033N / 79.545049WChris Kuethe2006-02-211-3/+0
| | | | | cgps doesn't need to printf "No data" - it already has a prettier way to do that with curses.
* Minor formatting nit.Gary E. Miller2006-02-201-1/+1
| | | | Blank course error not completely covering the previous text in that window.
* Pre 2.31 minor bugfixes.Eric S. Raymond2006-02-171-1/+1
|
* Clean up some extraneous ^Ms.Chris Kuethe2005-09-271-76/+115
|
* cgps fixes from rom Jeff Francis:Chris Kuethe2005-09-151-9/+37
| | | | | | | | | | | | 1. Adds a '-s' flag to the command line to disable the spewing of raw gpsd data at the bottom of the screen (it's great for diagnostics, it's ugly/distracting if you want to use cgps while you're driving). 2. Added an 's' command while the program is running to toggle spewing of raw gpsd data on and off. 3. Added a 'c' command to clear the raw gpsd data window.
* xgps now has the -l option as well as cgps. Document it.Eric S. Raymond2005-09-061-8/+7
|
* splint cleanup and cosmetic fixes.Eric S. Raymond2005-09-011-2/+2
|
* Apply Lonnie Mendez patches to fix my gpsd mistakes.Gary E. Miller2005-08-261-1/+1
| | | | Also allow gpsd to compile w/o GARMIN_ENABLE.
* Add -l option to cgps. -l d is DD.dddddd, -l m is DD MM.mmmm' and -l s is DD ↵Gary E. Miller2005-08-251-5/+38
| | | | MM' SS.sss". Also tweak deg_to_str().
* Add new deg_to_str() function to libgps. Gary E. Miller2005-08-251-6/+12
| | | | Use to convert degrees to various string representations.
* Small patch to cgps.c to fix/change a few things.Chris Kuethe2005-08-211-8/+12
| | | | | | | | | | >From Jeff Francis 1. Satellites weren't showing up in the satellite window. 2. Satellite window not big enough for all satellites. 3. "Blanking" string of spaces too long. 4. Added a "command" window for future use (still only accepts 'q' for now).