aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2019-10-13 19:08:00 +0200
committerlaforge <laforge@osmocom.org>2019-10-17 08:06:19 +0000
commit066fd04f471ad55639b5cc6dd13b8aa9ca7c1f40 (patch)
tree47d55c870c077ea000bc39705f5021f7b65f6e7d /Transceiver52M
parentaeaba02e024ceb8858ac9a986d7ce5d0506cefb6 (diff)
Fix common misspellings and typos
Diffstat (limited to 'Transceiver52M')
-rw-r--r--Transceiver52M/Channelizer.cpp2
-rw-r--r--Transceiver52M/ChannelizerBase.cpp2
-rw-r--r--Transceiver52M/ChannelizerBase.h2
-rw-r--r--Transceiver52M/Complex.h2
-rw-r--r--Transceiver52M/Resampler.h4
-rw-r--r--Transceiver52M/Transceiver.cpp2
-rw-r--r--Transceiver52M/Transceiver.h2
-rw-r--r--Transceiver52M/arch/arm/convolve.c2
-rw-r--r--Transceiver52M/arch/common/fft.c2
-rw-r--r--Transceiver52M/arch/x86/convert.c2
-rw-r--r--Transceiver52M/arch/x86/convolve.c4
-rw-r--r--Transceiver52M/device/common/radioDevice.h2
-rw-r--r--Transceiver52M/device/common/smpl_buf.h2
-rw-r--r--Transceiver52M/device/lms/LMSDevice.cpp2
-rw-r--r--Transceiver52M/device/lms/LMSDevice.h2
-rw-r--r--Transceiver52M/device/usrp1/USRPDevice.h2
-rw-r--r--Transceiver52M/proto_trxd.c2
-rw-r--r--Transceiver52M/radioInterface.h4
-rw-r--r--Transceiver52M/sigProcLib.cpp4
-rw-r--r--Transceiver52M/sigProcLib.h2
20 files changed, 24 insertions, 24 deletions
diff --git a/Transceiver52M/Channelizer.cpp b/Transceiver52M/Channelizer.cpp
index 341cd0a..0522f20 100644
--- a/Transceiver52M/Channelizer.cpp
+++ b/Transceiver52M/Channelizer.cpp
@@ -98,7 +98,7 @@ bool Channelizer::rotate(const float *in, size_t len)
return true;
}
-/* Setup channelizer paramaters */
+/* Setup channelizer parameters */
Channelizer::Channelizer(size_t m, size_t blockLen, size_t hLen)
: ChannelizerBase(m, blockLen, hLen)
{
diff --git a/Transceiver52M/ChannelizerBase.cpp b/Transceiver52M/ChannelizerBase.cpp
index f3f07c1..e6eeed2 100644
--- a/Transceiver52M/ChannelizerBase.cpp
+++ b/Transceiver52M/ChannelizerBase.cpp
@@ -225,7 +225,7 @@ bool ChannelizerBase::checkLen(size_t innerLen, size_t outerLen)
}
/*
- * Setup channelizer paramaters
+ * Setup channelizer parameters
*/
ChannelizerBase::ChannelizerBase(size_t m, size_t blockLen, size_t hLen)
: subFilters(NULL), hInputs(NULL), hOutputs(NULL), hist(NULL),
diff --git a/Transceiver52M/ChannelizerBase.h b/Transceiver52M/ChannelizerBase.h
index 7da506b..025ff25 100644
--- a/Transceiver52M/ChannelizerBase.h
+++ b/Transceiver52M/ChannelizerBase.h
@@ -32,7 +32,7 @@ protected:
/* Buffer length validity checking */
bool checkLen(size_t innerLen, size_t outerLen);
public:
- /* Initilize channelizer/synthesis filter internals */
+ /* Initialize channelizer/synthesis filter internals */
bool init();
};
diff --git a/Transceiver52M/Complex.h b/Transceiver52M/Complex.h
index d02944b..6e72346 100644
--- a/Transceiver52M/Complex.h
+++ b/Transceiver52M/Complex.h
@@ -5,7 +5,7 @@ unlike the built-in complex<> templates, these inline most operations for speed
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/Resampler.h b/Transceiver52M/Resampler.h
index 139b857..5af8d26 100644
--- a/Transceiver52M/Resampler.h
+++ b/Transceiver52M/Resampler.h
@@ -35,12 +35,12 @@ public:
Resampler(size_t p, size_t q, size_t filt_len = 16);
~Resampler();
- /* Initilize resampler filterbank.
+ /* Initialize resampler filterbank.
* @param bw bandwidth factor on filter generation (pre-window)
* @return false on error, zero otherwise
*
* Automatic setting is to compute the filter to prevent aliasing with
- * a Blackman-Harris window. Adjustment is made through a bandwith
+ * a Blackman-Harris window. Adjustment is made through a bandwidth
* factor to shift the cutoff and/or the constituent filter lengths.
* Calculation of specific rolloff factors or 3-dB cutoff points is
* left as an excersize for the reader.
diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index 2f4018c..9697bb3 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -909,7 +909,7 @@ bool Transceiver::driveControl(size_t chan)
sprintf(response, "RSP SETFORMAT %u %u", version_recv, version_recv);
}
} else if (match_cmd(command, "_SETBURSTTODISKMASK", &params)) {
- // debug command! may change or disapear without notice
+ // debug command! may change or disappear without notice
// set a mask which bursts to dump to disk
int mask;
sscanf(params, "%d", &mask);
diff --git a/Transceiver52M/Transceiver.h b/Transceiver52M/Transceiver.h
index 30f6a60..ed063dd 100644
--- a/Transceiver52M/Transceiver.h
+++ b/Transceiver52M/Transceiver.h
@@ -216,7 +216,7 @@ private:
bool start();
void stop();
- /** Protect destructor accessable stop call */
+ /** Protect destructor accessible stop call */
Mutex mLock;
protected:
diff --git a/Transceiver52M/arch/arm/convolve.c b/Transceiver52M/arch/arm/convolve.c
index 63b1655..adb718d 100644
--- a/Transceiver52M/arch/arm/convolve.c
+++ b/Transceiver52M/arch/arm/convolve.c
@@ -58,7 +58,7 @@ static void neon_conv_cmplx_4n(float *x, float *h, float *y, int h_len, int len)
}
#endif
-/* API: Initalize convolve module */
+/* API: Initialize convolve module */
void convolve_init(void)
{
/* Stub */
diff --git a/Transceiver52M/arch/common/fft.c b/Transceiver52M/arch/common/fft.c
index ad096b1..2261672 100644
--- a/Transceiver52M/arch/common/fft.c
+++ b/Transceiver52M/arch/common/fft.c
@@ -103,7 +103,7 @@ void free_fft(struct fft_hdl *hdl)
}
/*! \brief Run multiple DFT operations with the initialized plan
- * \param[in] hdl handle to an intitialized fft struct
+ * \param[in] hdl handle to an initialized fft struct
*
* Input and output buffers are configured with init_fft().
*/
diff --git a/Transceiver52M/arch/x86/convert.c b/Transceiver52M/arch/x86/convert.c
index 07cdf59..bbcfd67 100644
--- a/Transceiver52M/arch/x86/convert.c
+++ b/Transceiver52M/arch/x86/convert.c
@@ -27,7 +27,7 @@
#include "config.h"
#endif
-/* Architecture dependant function pointers */
+/* Architecture dependent function pointers */
struct convert_cpu_context {
void (*convert_si16_ps_16n) (float *, const short *, int);
void (*convert_si16_ps) (float *, const short *, int);
diff --git a/Transceiver52M/arch/x86/convolve.c b/Transceiver52M/arch/x86/convolve.c
index 209d377..66fca74 100644
--- a/Transceiver52M/arch/x86/convolve.c
+++ b/Transceiver52M/arch/x86/convolve.c
@@ -27,7 +27,7 @@
#include "config.h"
#endif
-/* Architecture dependant function pointers */
+/* Architecture dependent function pointers */
struct convolve_cpu_context {
void (*conv_cmplx_4n) (const float *, int, const float *, int, float *,
int, int, int);
@@ -66,7 +66,7 @@ int _base_convolve_complex(const float *x, int x_len,
int bounds_check(int x_len, int h_len, int y_len,
int start, int len);
-/* API: Initalize convolve module */
+/* API: Initialize convolve module */
void convolve_init(void)
{
c.conv_cmplx_4n = (void *)_base_convolve_complex;
diff --git a/Transceiver52M/device/common/radioDevice.h b/Transceiver52M/device/common/radioDevice.h
index d27a52c..26903e8 100644
--- a/Transceiver52M/device/common/radioDevice.h
+++ b/Transceiver52M/device/common/radioDevice.h
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/device/common/smpl_buf.h b/Transceiver52M/device/common/smpl_buf.h
index 383c814..ab612de 100644
--- a/Transceiver52M/device/common/smpl_buf.h
+++ b/Transceiver52M/device/common/smpl_buf.h
@@ -33,7 +33,7 @@
/*
Sample Buffer - Allows reading and writing of timed samples using osmo-trx
timestamps. Time conversions are handled
- internally or accessable through the static convert calls.
+ internally or accessible through the static convert calls.
*/
class smpl_buf {
public:
diff --git a/Transceiver52M/device/lms/LMSDevice.cpp b/Transceiver52M/device/lms/LMSDevice.cpp
index feeb646..b5993b8 100644
--- a/Transceiver52M/device/lms/LMSDevice.cpp
+++ b/Transceiver52M/device/lms/LMSDevice.cpp
@@ -624,7 +624,7 @@ void LMSDevice::update_stream_stats_rx(size_t chan, bool *overrun)
m_ctr[chan].rx_overruns += status.overrun;
/* Dropped packets in Rx are counted when gaps in Rx timestamps are
- detected (likely because buffer oveflow in hardware). Value count
+ detected (likely because buffer overflow in hardware). Value count
since the last call to LMS_GetStreamStatus(stream). */
if (status.droppedPackets) {
changed = true;
diff --git a/Transceiver52M/device/lms/LMSDevice.h b/Transceiver52M/device/lms/LMSDevice.h
index 1464c53..003d064 100644
--- a/Transceiver52M/device/lms/LMSDevice.h
+++ b/Transceiver52M/device/lms/LMSDevice.h
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: AGPL-3.0+
*
* This software is distributed under multiple licenses; see the COPYING file in
-* the main directory for licensing information for this specific distribuion.
+* the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/device/usrp1/USRPDevice.h b/Transceiver52M/device/usrp1/USRPDevice.h
index bb70648..6dfa5f0 100644
--- a/Transceiver52M/device/usrp1/USRPDevice.h
+++ b/Transceiver52M/device/usrp1/USRPDevice.h
@@ -4,7 +4,7 @@
* SPDX-License-Identifier: AGPL-3.0+
*
* This software is distributed under multiple licenses; see the COPYING file in
-* the main directory for licensing information for this specific distribuion.
+* the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
diff --git a/Transceiver52M/proto_trxd.c b/Transceiver52M/proto_trxd.c
index fbef77a..5a898b9 100644
--- a/Transceiver52M/proto_trxd.c
+++ b/Transceiver52M/proto_trxd.c
@@ -72,7 +72,7 @@ bool trxd_send_burst_ind_v0(size_t chan, int fd, const struct trx_ul_burst_ind *
if(bi->idle)
return true;
- /* +2: Historically (OpenBTS times), two extra non-used bytes are sent appeneded to each burst */
+ /* +2: Historically (OpenBTS times), two extra non-used bytes are sent appended to each burst */
char buf[sizeof(struct trxd_hdr_v0) + bi->nbits + 2];
struct trxd_hdr_v0* pkt = (struct trxd_hdr_v0*)buf;
diff --git a/Transceiver52M/radioInterface.h b/Transceiver52M/radioInterface.h
index d72fb69..d9fa414 100644
--- a/Transceiver52M/radioInterface.h
+++ b/Transceiver52M/radioInterface.h
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.
@@ -79,7 +79,7 @@ public:
bool start();
bool stop();
- /** intialization */
+ /** initialization */
virtual bool init(int type);
virtual void close();
diff --git a/Transceiver52M/sigProcLib.cpp b/Transceiver52M/sigProcLib.cpp
index 011ddff..04f7e30 100644
--- a/Transceiver52M/sigProcLib.cpp
+++ b/Transceiver52M/sigProcLib.cpp
@@ -345,7 +345,7 @@ static signalVector *convolve(const signalVector *x, const signalVector *h,
_x = x;
/*
- * Four convovle types:
+ * Four convolve types:
* 1. Complex-Real (aligned)
* 2. Complex-Complex (aligned)
* 3. Complex-Real (!aligned)
@@ -723,7 +723,7 @@ static signalVector *mapEdgeSymbols(const BitVector &bits)
*
* Delay the EDGE downlink bursts by one symbol in order to match GMSK pulse
* shaping group delay. The difference in group delay arises from the dual
- * pulse filter combination of the GMSK Laurent represenation whereas 8-PSK
+ * pulse filter combination of the GMSK Laurent representation whereas 8-PSK
* uses a single pulse linear filter.
*/
static signalVector *shapeEdgeBurst(const signalVector &symbols)
diff --git a/Transceiver52M/sigProcLib.h b/Transceiver52M/sigProcLib.h
index fd9a5f0..dd03190 100644
--- a/Transceiver52M/sigProcLib.h
+++ b/Transceiver52M/sigProcLib.h
@@ -1,7 +1,7 @@
/*
* Copyright 2008 Free Software Foundation, Inc.
*
-* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribuion.
+* This software is distributed under multiple licenses; see the COPYING file in the main directory for licensing information for this specific distribution.
*
* This use of this software may be subject to additional restrictions.
* See the LEGAL file in the main directory for details.