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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+2-2
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

+6-6
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

+2-2
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

+9-9
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

+1-1
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

src/atest.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
*
2626
* Purpose: Test fixture for the AFSK demodulator.
2727
*
28-
* Inputs: Takes audio from a .WAV file insted of the audio device.
28+
* Inputs: Takes audio from a .WAV file instead of the audio device.
2929
*
3030
* Description: This can be used to test the AFSK demodulator under
31-
* controlled and reproducable conditions for tweaking.
31+
* controlled and reproducible conditions for tweaking.
3232
*
3333
* For example
3434
*
@@ -705,7 +705,7 @@ int main (int argc, char *argv[])
705705
dw_printf ("%d packets decoded in %.3f seconds. %.1f x realtime\n", packets_decoded_total, elapsed, total_filetime/elapsed);
706706
if (d_o_opt) {
707707
dw_printf ("DCD count = %d\n", dcd_count);
708-
dw_printf ("DCD missing erors = %d\n", dcd_missing_errors);
708+
dw_printf ("DCD missing errors = %d\n", dcd_missing_errors);
709709
}
710710

711711
if (error_if_less_than != -1 && packets_decoded_total < error_if_less_than) {

src/audio.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ static int calcbufsize(int rate, int chans, int bits)
206206
* more restrictive in its capabilities.
207207
* It might say, the best I can do is mono, 8 bit, 8000/sec.
208208
*
209-
* The sofware modem must use this ACTUAL information
209+
* The software modem must use this ACTUAL information
210210
* that the device is supplying, that could be different
211211
* than what the user specified.
212212
*
@@ -925,7 +925,7 @@ static int set_oss_params (int a, int fd, struct audio_s *pa)
925925
* This was long ago under different conditions.
926926
* Should study this again some day.
927927
*
928-
* Your milage may vary.
928+
* Your mileage may vary.
929929
*/
930930
err = ioctl (fd, SNDCTL_DSP_GETBLKSIZE, &ossbuf_size_in_bytes);
931931
if (err == -1) {

src/audio.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ struct audio_s {
158158

159159
enum v26_e { V26_UNSPECIFIED=0, V26_A, V26_B } v26_alternative;
160160

161-
// Original implementaion used alternative A for 2400 bbps PSK.
161+
// Original implementation used alternative A for 2400 bbps PSK.
162162
// Years later, we discover that MFJ-2400 used alternative B.
163163
// It's likely the others did too. it also works a little better.
164164
// Default to MFJ compatible and print warning if user did not
@@ -263,7 +263,7 @@ struct audio_s {
263263
#define MAX_GPIO_NAME_LEN 20 // 12 would cover any case I've seen so this should be safe
264264

265265
char out_gpio_name[MAX_GPIO_NAME_LEN];
266-
/* orginally, gpio number NN was assumed to simply */
266+
/* originally, gpio number NN was assumed to simply */
267267
/* have the name gpioNN but this turned out not to be */
268268
/* the case for CubieBoard where it was longer. */
269269
/* This is filled in by ptt_init so we don't have to */
@@ -300,7 +300,7 @@ struct audio_s {
300300
int in_gpio_num; /* GPIO number */
301301

302302
char in_gpio_name[MAX_GPIO_NAME_LEN];
303-
/* orginally, gpio number NN was assumed to simply */
303+
/* originally, gpio number NN was assumed to simply */
304304
/* have the name gpioNN but this turned out not to be */
305305
/* the case for CubieBoard where it was longer. */
306306
/* This is filled in by ptt_init so we don't have to */
@@ -314,7 +314,7 @@ struct audio_s {
314314
int dwait; /* First wait extra time for receiver squelch. */
315315
/* Default 0 units of 10 mS each . */
316316

317-
int slottime; /* Slot time in 10 mS units for persistance algorithm. */
317+
int slottime; /* Slot time in 10 mS units for persistence algorithm. */
318318
/* Typical value is 10 meaning 100 milliseconds. */
319319

320320
int persist; /* Sets probability for transmitting after each */

src/audio_portaudio.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ static int calcbufsize(int rate, int chans, int bits)
156156
* the same device name for more then one connected device
157157
* (ie two SignaLinks). Appending a Portaudio device index to the
158158
* the device name ensure we can find the correct one. And if it's not
159-
* available return the first occurence that matches the device name.
159+
* available return the first occurrence that matches the device name.
160160
*----------------------------------------------------------------*/
161161
static int searchPADevice(struct adev_s *dev, char *_devName, int reqDeviceNo, int io_flag)
162162
{
@@ -513,7 +513,7 @@ static int paOutput16CB( const void *inputBuffer, void *outputBuffer,
513513
* more restrictive in its capabilities.
514514
* It might say, the best I can do is mono, 8 bit, 8000/sec.
515515
*
516-
* The sofware modem must use this ACTUAL information
516+
* The software modem must use this ACTUAL information
517517
* that the device is supplying, that could be different
518518
* than what the user specified.
519519
*

src/audio_win.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ static struct adev_s {
209209
* more restrictive in its capabilities.
210210
* It might say, the best I can do is mono, 8 bit, 8000/sec.
211211
*
212-
* The sofware modem must use this ACTUAL information
212+
* The software modem must use this ACTUAL information
213213
* that the device is supplying, that could be different
214214
* than what the user specified.
215215
*
@@ -921,7 +921,7 @@ int audio_get (int a)
921921
* c - One byte in range of 0 - 255.
922922
*
923923
*
924-
* Global In: out_current - index of output buffer currenly being filled.
924+
* Global In: out_current - index of output buffer currently being filled.
925925
*
926926
* Returns: Normally non-negative.
927927
* -1 for any type of error.

0 commit comments

Comments
 (0)