diff options
Diffstat (limited to 'src/bnetz')
-rw-r--r-- | src/bnetz/bnetz.h | 4 | ||||
-rw-r--r-- | src/bnetz/dialer.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/bnetz/bnetz.h b/src/bnetz/bnetz.h index 70154c4..4033a6b 100644 --- a/src/bnetz/bnetz.h +++ b/src/bnetz/bnetz.h @@ -89,11 +89,11 @@ typedef struct bnetz { enum dsp_mode dsp_mode; /* current mode: audio, durable tone 0 or 1, "Telegramm" */ fsk_mod_t fsk_mod; /* fsk modem instance */ fsk_demod_t fsk_demod; - uint16_t rx_telegramm; /* rx shift register for receiveing telegramm */ + uint16_t rx_telegramm; /* rx shift register for receiving telegramm */ double rx_telegramm_quality[16];/* quality of each bit in telegramm */ double rx_telegramm_level[16]; /* level of each bit in telegramm */ int rx_telegramm_qualidx; /* index of quality array above */ - uint16_t rx_tone; /* rx shift register for receiveing continuous tone */ + uint16_t rx_tone; /* rx shift register for receiving continuous tone */ double rx_tone_quality[16]; /* quality of tone fragment (100th of second) */ double rx_tone_level[16]; /* level of tone fragment (100th of second) */ int rx_tone_qualidx; /* index of quality array above */ diff --git a/src/bnetz/dialer.c b/src/bnetz/dialer.c index 396eb3c..3d98dab 100644 --- a/src/bnetz/dialer.c +++ b/src/bnetz/dialer.c @@ -153,7 +153,7 @@ static int handle_options(int short_option, int __attribute__((unused)) argi, ch /* process next fsk bit. - * if the dial string terminats, change to SILENCE mode + * if the dial string terminates, change to SILENCE mode */ static int fsk_send_bit(void __attribute__((unused)) *inst) { @@ -236,7 +236,7 @@ again: } } -/* loop that gets audio from encoder and fowards it to sound card. +/* loop that gets audio from encoder and forwards it to sound card. * alternatively a sound file is written. */ static void process_signal(void) |