From 75765d49b735f3a998a5c0ee4b372b4d1da7576c Mon Sep 17 00:00:00 2001 From: Martin Hauke Date: Mon, 15 Jul 2019 21:14:52 +0200 Subject: Fixed many typos in output and source code comments --- src/amps/dsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/amps/dsp.c') diff --git a/src/amps/dsp.c b/src/amps/dsp.c index 1bf8c43..f08d023 100644 --- a/src/amps/dsp.c +++ b/src/amps/dsp.c @@ -39,7 +39,7 @@ * The average level change offsets of the dotting sequence is used to set the * window for the first bit. When all samples for the window are received, a * raise in level is detected as 1, fall in level is detected as 0. This is done - * by substracting the average sample value of the left side of the window by + * by subtracting the average sample value of the left side of the window by * the average sample value of the right side. After the bit has been detected, * the samples for the next window will be received and detected. * @@ -108,7 +108,7 @@ #define AMPS_BITRATE 10000 /* for some reason, 4000 Hz deviation works better */ #define TACS_DBM0_DEVIATION 4000.0 /* 2300 Hz deviation at 1 kHz (according to panasonic manual) */ -#define TACS_MAX_DEVIATION 6400.0 /* (according to texas intruments and other sources) */ +#define TACS_MAX_DEVIATION 6400.0 /* (according to texas instruments and other sources) */ #define TACS_MAX_MODULATION 9500.0 /* (according to panasonic manual) */ #define TACS_FSK_DEVIATION (6400.0 / TACS_DBM0_DEVIATION) /* no emphasis */ #define TACS_SAT_DEVIATION (1700.0 / TACS_DBM0_DEVIATION) /* no emphasis (panasonic / TI) */ -- cgit v1.2.3