Skip to content

Commit 8619b74

Browse files
committed
Pull request 353 - Fix spelling errors.
2 parents b66c21d + edc5707 commit 8619b74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+164
-164
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ endif()
133133
# auto include current directory
134134
set(CMAKE_INCLUDE_CURRENT_DIR ON)
135135

136-
# set OS dependant variables
136+
# set OS dependent variables
137137
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
138138
set(LINUX TRUE)
139139

conf/99-direwolf-cmedia.rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# $ ls -l /dev/hidraw*
44
# crw------- 1 root root 247, 0 Sep 24 09:40 /dev/hidraw0
55
#
6-
# An ordinary user, trying to acccess it will be denied.
6+
# An ordinary user, trying to access it will be denied.
77
#
88
# Unnecessarily running applications as root is generally a bad idea because it makes it too easy
99
# to accidentally trash your system. We need to relax the restrictions so ordinary users can use these devices.

external/geotranz/mgrs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ extern "C" {
236236
* The function Convert_MGRS_To_UPS converts an MGRS coordinate string
237237
* to UPS (hemisphere, easting, and northing) coordinates, according
238238
* to the current ellipsoid parameters. If any errors occur, the error
239-
* code(s) are returned by the function, otherwide UPS_NO_ERROR is returned.
239+
* code(s) are returned by the function, otherwise UPS_NO_ERROR is returned.
240240
*
241241
* MGRS : MGRS coordinate string (input)
242242
* Hemisphere : Hemisphere either 'N' or 'S' (output)

man/kissutil.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Example: %H:%M:%S for current time in hours, minutes, seconds.
4545

4646
.TP
4747
.BI "-f " "xmit-directory"
48-
Files in this directory are transmited and deleted.
48+
Files in this directory are transmitted and deleted.
4949
Another application places a file here when it wants something to be transmitted.
5050

5151
.TP

man/tt2text.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tt2text \- Convert Touch Tone sequence to text
1111

1212

1313
.SH DESCRIPTION
14-
\fBtt2text\fR converts a Touch Tone squence to text. There are two types
14+
\fBtt2text\fR converts a Touch Tone sequence to text. There are two types
1515
of encoding:
1616
.RS
1717
.HP

scripts/telemetry-toolkit/telem-volts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/python3
22

33
# Part of Dire Wolf APRS Telemetry Toolkit, WB2OSZ, 2015
44

@@ -33,4 +33,4 @@
3333
# (multiply by expected value, divide by uncalibrated result.)
3434
#volts = volts * 4.98 / 4.889
3535

36-
print "%.3f" % (volts)
36+
print("%.3f" % (volts))

src/agwlib.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ static void * tnc_listen_thread (void *arg)
321321
s_tnc_sock = dwsock_connect (s_tnc_host, s_tnc_port, "TNC", 0, 0, tncaddr);
322322

323323
if (s_tnc_sock != -1) {
324-
dw_printf ("Succesfully reattached to network TNC.\n");
324+
dw_printf ("Successfully reattached to network TNC.\n");
325325

326326
// Might need to run TNC initialization again.
327327
// For example, a server would register its callsigns.
@@ -600,7 +600,7 @@ int agwlib_G_ask_port_information (void)
600600
* Returns: Number of bytes sent for success, -1 for error.
601601
*
602602
* Description: This only starts the sequence and does not wait.
603-
* Success or failue will be indicated sometime later by ?
603+
* Success or failure will be indicated sometime later by ?
604604
*
605605
*--------------------------------------------------------------------*/
606606

@@ -635,7 +635,7 @@ int agwlib_C_connect (int chan, char *call_from, char *call_to)
635635
* Returns: Number of bytes sent for success, -1 for error.
636636
*
637637
* Description: This only starts the sequence and does not wait.
638-
* Success or failue will be indicated sometime later by ?
638+
* Success or failure will be indicated sometime later by ?
639639
*
640640
*--------------------------------------------------------------------*/
641641

@@ -722,13 +722,13 @@ int agwlib_D_send_connected_data (int chan, int pid, char *call_from, char *call
722722
* hand we don't want to get TOO far ahead when transferring a large file.
723723
*
724724
* Before disconnecting from another station, it would be good to know
725-
* that it actually recevied the last message we sent. For this reason,
725+
* that it actually received the last message we sent. For this reason,
726726
* I think it would be good for this to include frames that were
727-
* transmitted but not yet acknowleged. (Even if it was transmitted once,
727+
* transmitted but not yet acknowledged. (Even if it was transmitted once,
728728
* it could still be transmitted again, if lost, so you could say it is
729729
* still waiting for transmission.)
730730
*
731-
* See server.c for a more precise definition of exacly how this is defined.
731+
* See server.c for a more precise definition of exactly how this is defined.
732732
*
733733
*--------------------------------------------------------------------*/
734734

src/ais.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ void ais_to_nmea (unsigned char *ais, int ais_len, char *nmea, int nmea_size)
338338
*
339339
* Name: ais_parse
340340
*
341-
* Purpose: Parse AIS sentence and extract interesing parts.
341+
* Purpose: Parse AIS sentence and extract interesting parts.
342342
*
343343
* Inputs: sentence NMEA sentence.
344344
*
@@ -594,7 +594,7 @@ int ais_parse (char *sentence, int quiet, char *descr, int descr_size, char *mss
594594
*
595595
* Returns: -1 Invalid message type.
596596
* 0 Good length.
597-
* 1 Unexpected lenth.
597+
* 1 Unexpected length.
598598
*
599599
*--------------------------------------------------------------------*/
600600

src/aprs_tt.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ void aprs_tt_init (struct tt_config_s *p, int debug)
212212
* The complete message is then processed.
213213
* The touch tone decoder sends $ if no activity
214214
* for some amount of time, perhaps 5 seconds.
215-
* A partially accumulated messge is discarded if
215+
* A partially accumulated message is discarded if
216216
* there is a long gap.
217217
*
218218
* '.' means no activity during processing period.
@@ -590,7 +590,7 @@ static int parse_fields (char *msg)
590590
* Purpose: Expand compact form "macro" to full format then process.
591591
*
592592
* Inputs: e - An "entry" extracted from a complete
593-
* APRStt messsage.
593+
* APRStt message.
594594
* In this case, it should contain only digits.
595595
*
596596
* Returns: 0 for success or one of the TT_ERROR_... codes.
@@ -705,7 +705,7 @@ static int expand_macro (char *e)
705705
* Purpose: Extract traditional format callsign or object name from touch tone sequence.
706706
*
707707
* Inputs: e - An "entry" extracted from a complete
708-
* APRStt messsage.
708+
* APRStt message.
709709
* In this case, it should start with "A" then a digit.
710710
*
711711
* Outputs: m_callsign
@@ -888,7 +888,7 @@ static int parse_callsign (char *e)
888888
* Purpose: Extract object name from touch tone sequence.
889889
*
890890
* Inputs: e - An "entry" extracted from a complete
891-
* APRStt messsage.
891+
* APRStt message.
892892
* In this case, it should start with "AA".
893893
*
894894
* Outputs: m_callsign
@@ -950,7 +950,7 @@ static int parse_object_name (char *e)
950950
* Purpose: Extract symbol from touch tone sequence.
951951
*
952952
* Inputs: e - An "entry" extracted from a complete
953-
* APRStt messsage.
953+
* APRStt message.
954954
* In this case, it should start with "AB".
955955
*
956956
* Outputs: m_symtab_or_overlay
@@ -1064,7 +1064,7 @@ static int parse_symbol (char *e)
10641064
* Purpose: Extract QIKcom-2 / APRStt 3 ten digit call or five digit suffix.
10651065
*
10661066
* Inputs: e - An "entry" extracted from a complete
1067-
* APRStt messsage.
1067+
* APRStt message.
10681068
* In this case, it should start with "AC".
10691069
*
10701070
* Outputs: m_callsign
@@ -1147,7 +1147,7 @@ static int parse_aprstt3_call (char *e)
11471147
* Purpose: Extract location from touch tone sequence.
11481148
*
11491149
* Inputs: e - An "entry" extracted from a complete
1150-
* APRStt messsage.
1150+
* APRStt message.
11511151
* In this case, it should start with "B".
11521152
*
11531153
* Outputs: m_latitude
@@ -1494,7 +1494,7 @@ static int parse_location (char *e)
14941494
* defined in the configuration file.
14951495
*
14961496
* Inputs: e - An "entry" extracted from a complete
1497-
* APRStt messsage.
1497+
* APRStt message.
14981498
* In this case, it should start with "B".
14991499
*
15001500
* valstrsize - size of the outputs so we can check for buffer overflow.
@@ -1645,7 +1645,7 @@ static int find_ttloc_match (char *e, char *xstr, char *ystr, char *zstr, char *
16451645
* Purpose: Extract comment / status or other special information from touch tone message.
16461646
*
16471647
* Inputs: e - An "entry" extracted from a complete
1648-
* APRStt messsage.
1648+
* APRStt message.
16491649
* In this case, it should start with "C".
16501650
*
16511651
* Outputs: m_comment

src/aprs_tt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ struct tt_config_s {
123123
int obj_recv_chan; /* Channel to listen for tones. */
124124

125125
int obj_xmit_chan; /* Channel to transmit object report. */
126-
/* -1 for none. This could happpen if we */
126+
/* -1 for none. This could happen if we */
127127
/* are only sending to application */
128128
/* and/or IGate. */
129129

0 commit comments

Comments
 (0)