summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix some documentation.Eric S. Raymond2005-07-253-82/+106
|
* Break isgps.c apart from rtcm.c.Eric S. Raymond2005-07-254-328/+342
|
* Successfully broke adhesion between RTCM bitfield structures and the decoder.Eric S. Raymond2005-07-251-124/+141
|
* A simpler big-endianism test using autotools.Eric S. Raymond2005-07-251-25/+16
|
* Petr Slanky's latest Evermore patch and some splint cleanups.Eric S. Raymond2005-07-256-48/+145
|
* Better OS-specific endianness detectionChris Kuethe2005-07-251-3/+5
|
* Fix Gary's make problem.Eric S. Raymond2005-07-251-1/+1
|
* At least on OpenBSD, endian.h is in /usr/include/sysChris Kuethe2005-07-251-0/+4
| | | | | Other developers, please check to see if your <endian.h> is just a pointer to <sys/endian.h> and if it is, we can kill off this ifdef...
* More decoder separation.Eric S. Raymond2005-07-241-9/+8
|
* This change might keep us from losing on a 16-bit machine.Eric S. Raymond2005-07-241-2/+6
|
* More separation of the low-level decoder.Eric S. Raymond2005-07-244-19/+17
|
* More work at separating the low-level decoder from the RTCM structure stuff.Eric S. Raymond2005-07-244-68/+68
|
* Merged in Petr's stuff on undocumented EverMore control sequences.Eric S. Raymond2005-07-241-2/+51
|
* First step towards sepaeating out satlink protocol.Eric S. Raymond2005-07-241-4/+5
|
* Calculate the number of almanac entries correctly.Eric S. Raymond2005-07-241-1/+1
|
* Add a section on mission and design philosophy.Eric S. Raymond2005-07-241-0/+115
|
* Documentation improvements.Eric S. Raymond2005-07-232-3/+15
|
* In theory we now have a repack functionEric S. Raymond2005-07-231-6/+22
| | | | (except for parity compuation and inversion).
* More work on repack().Eric S. Raymond2005-07-231-4/+7
|
* More work on the repack() function. Avoid a core dump when processing DGPSIP.Eric S. Raymond2005-07-234-34/+41
|
* First-packet-skipped bug report is spurious.Eric S. Raymond2005-07-231-6/+0
|
* Add -i option to gpsfake.Eric S. Raymond2005-07-232-3/+16
|
* Prevent a core dump.Eric S. Raymond2005-07-231-2/+4
|
* Support, and document, dumping packets of unknown type.Eric S. Raymond2005-07-235-8/+79
|
* Scrap more unneeded intermediate variables.Eric S. Raymond2005-07-221-105/+93
|
* Splint cleanup after union merge.Eric S. Raymond2005-07-221-10/+11
|
* Message structure is one big union; grotty casts are gone.Eric S. Raymond2005-07-221-313/+273
|
* OK, substructures are all gathered. Now move to one big union.Eric S. Raymond2005-07-221-66/+48
|
* Eliminate casts.Eric S. Raymond2005-07-221-110/+79
|
* First step towards eliminating casrs in the decoder.Eric S. Raymond2005-07-221-84/+65
|
* More decoder cleanup and repack progress.Eric S. Raymond2005-07-222-23/+23
|
* RTCM health fields aren't boolean.Eric S. Raymond2005-07-222-13/+16
|
* First (incomplete) cut at repack function.Eric S. Raymond2005-07-221-8/+189
|
* Avoid a splint problem.Eric S. Raymond2005-07-222-4/+6
|
* Write the big-endian macros in terms of bitreverse().Eric S. Raymond2005-07-221-6/+17
|
* Added the bit-reversal machinery for big-endian machines.Eric S. Raymond2005-07-222-58/+95
|
* Add ability to list macros.Eric S. Raymond2005-07-221-7/+29
| | | | | Sort IDs longest first to avoid false prefix matches. Still not idempotent. Still clobbers rangerate.
* First version of wrapinvert processor.Eric S. Raymond2005-07-221-0/+59
| | | | Not idempotent. Still needs to be able to list macros.
* More instrumentation from Petr.Eric S. Raymond2005-07-221-33/+5
|
* Switch drivers properly if TSIP driver grabs an EverMore by mistakeEric S. Raymond2005-07-221-1/+20
| | | | (and then recovers)
* Wordsmithing.Eric S. Raymond2005-07-221-16/+26
|
* Fixing a few little detailsChris Kuethe2005-07-221-8/+17
|
* Documentation fixes and another EverMore patch.Eric S. Raymond2005-07-223-8/+16
|
* Add References page.Eric S. Raymond2005-07-227-35/+182
|
* Move RTCM initialization to the right spot. Passes all regression tests.Eric S. Raymond2005-07-211-0/+3
|
* Fix some bugs in the RTCM104 interface.Eric S. Raymond2005-07-213-36/+9
|
* Force packet_names.h to be rebuilt.Eric S. Raymond2005-07-211-0/+1
|
* Get rid of statetable.el...Eric S. Raymond2005-07-207-215/+109
| | | | ...there's an easier way to keep enum and name arrays in sync.
* This defines NAN for us where needed.Chris Kuethe2005-07-201-0/+8
| | | | | | There is talk of Bad Stuff happening when NAN is just a global ifndef/define/endif, so we wrap it in tests for OSes where we know we don't have NAN.
* For operating systems that don't have round/roundf, fake it with rint/rinfChris Kuethe2005-07-201-3/+5
| | | | | | cast to the appropriate type. The right fix of course is to get all OSes to keep up with all standards, but for now, since configure tests for round(), we may as well make use of that test.