summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--isgps.c2
-rw-r--r--rtcm.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/isgps.c b/isgps.c
index 5bba694e..8ea83d9f 100644
--- a/isgps.c
+++ b/isgps.c
@@ -3,7 +3,7 @@
This is a decoder for the unnamed protocol described in IS-GPS-200,
the Navstar GPS Interface Specification, and used as a transport layer
for both GPS satellite downlink transmissions and the RTCM104 format
-for briodcasting differential-GPS corrections.
+for broadcasting differential-GPS corrections.
The code was originally by Wolfgang Rupprecht. ESR severely hacked
it, with Wolfgang's help, in order to separate message analysis from
diff --git a/rtcm.c b/rtcm.c
index 8f9ee99f..a0586d16 100644
--- a/rtcm.c
+++ b/rtcm.c
@@ -24,8 +24,7 @@ code for that protocol in isgps.c.
The lower layer's job is done when it has assembled a message of up to
33 words of clean parity-checked data. At this point this upper layer
takes over. struct rtcm_msg_t is overlaid on the buffer and the bitfields
-are used to extract pieces of it (which, if you're on a big-endian machine
-may need to be swapped end-for-end). Those pieces are copied and (where
+are used to extract pieces of it. Those pieces are copied and (where
necessary) reassembled into a struct rtcm_t.
This code and the contents of isgps.c are evolved from code by Wolgang