aboutsummaryrefslogtreecommitdiffstats
path: root/src/libfsk
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2021-01-01 22:11:48 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2021-01-03 09:57:03 +0100
commita07764f0d9426ae5b18b1bc4f2c2951da88cb677 (patch)
tree9e253acf4888801b0aec851687491f0c959f021d /src/libfsk
parent97636aac1e0f9528c773c943af94591e7bb9bcf2 (diff)
Fixed typos in cli output and source code comments
Diffstat (limited to 'src/libfsk')
-rw-r--r--src/libfsk/fsk.c2
-rw-r--r--src/libfsk/fsk.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libfsk/fsk.c b/src/libfsk/fsk.c
index 1a4de84..c68d3e2 100644
--- a/src/libfsk/fsk.c
+++ b/src/libfsk/fsk.c
@@ -102,7 +102,7 @@ int fsk_mod_init(fsk_mod_t *fsk, void *inst, int (*send_bit)(void *inst), int sa
fsk->cycles_per_bit65536[1] = waves * 65536.0;
}
- /* if filter is enabled, add a band pass filter to smoot the spectrum of the tones
+ /* if filter is enabled, add a band pass filter to smooth the spectrum of the tones
* the bandwidth is twice the difference between f0 and f1
*/
if (filter) {
diff --git a/src/libfsk/fsk.h b/src/libfsk/fsk.h
index 57f3fe4..649ebeb 100644
--- a/src/libfsk/fsk.h
+++ b/src/libfsk/fsk.h
@@ -16,7 +16,7 @@ typedef struct fsk_mod {
int tx_bit; /* current transmitting bit (-1 if not set) */
double tx_bitpos; /* current transmit position in bit */
int filter; /* set, if filters are used */
- iir_filter_t lp[2]; /* filter to smoot transmission spectrum */
+ iir_filter_t lp[2]; /* filter to smooth transmission spectrum */
} fsk_mod_t;
typedef struct fsk_demod {