Skip to content

Commit b172734

Browse files
committed
Issue 401 - Avoid receiving own transmission due to audio crosstalk.
1 parent 8e32286 commit b172734

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

src/demod.c

+19-2
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,6 @@ int demod_init (struct audio_s *pa)
852852

853853
#define FSK_READ_ERR (256*256)
854854

855-
856855
__attribute__((hot))
857856
int demod_get_sample (int a)
858857
{
@@ -862,7 +861,6 @@ int demod_get_sample (int a)
862861

863862
assert (save_audio_config_p->adev[a].bits_per_sample == 8 || save_audio_config_p->adev[a].bits_per_sample == 16);
864863

865-
866864
if (save_audio_config_p->adev[a].bits_per_sample == 8) {
867865

868866
x1 = audio_get(a);
@@ -929,6 +927,21 @@ int demod_get_sample (int a)
929927
*
930928
*--------------------------------------------------------------------*/
931929

930+
static int mute_input[MAX_CHANS];
931+
932+
// New in 1.7.
933+
// A few people have a really bad audio cross talk situation where they receive their own transmissions.
934+
// It usually doesn't cause a problem but it is confusing to look at.
935+
// "half duplex" setting applied only to the transmit logic. i.e. wait for clear channel before sending.
936+
// Receiving was still active.
937+
// I think the simplest solution is to mute/unmute the audio input at this point if not full duplex.
938+
// This is called from ptt_set for half duplex.
939+
940+
void demod_mute_input (int chan, int mute_during_xmit)
941+
{
942+
assert (chan >= 0 && chan < MAX_CHANS);
943+
mute_input[chan] = mute_during_xmit;
944+
}
932945

933946
__attribute__((hot))
934947
void demod_process_sample (int chan, int subchan, int sam)
@@ -942,6 +955,10 @@ void demod_process_sample (int chan, int subchan, int sam)
942955
assert (chan >= 0 && chan < MAX_CHANS);
943956
assert (subchan >= 0 && subchan < MAX_SUBCHANS);
944957

958+
if (mute_input[chan]) {
959+
sam = 0;
960+
};
961+
945962
D = &demodulator_state[chan][subchan];
946963

947964

src/demod.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@
88

99
int demod_init (struct audio_s *pa);
1010

11+
void demod_mute_input (int chan, int mute);
12+
1113
int demod_get_sample (int a);
1214

1315
void demod_process_sample (int chan, int subchan, int sam);
1416

1517
void demod_print_agc (int chan, int subchan);
1618

17-
alevel_t demod_get_audio_level (int chan, int subchan);
19+
alevel_t demod_get_audio_level (int chan, int subchan);
20+

src/ptt.c

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
4-
// Copyright (C) 2011, 2013, 2014, 2015, 2016, 2017 John Langner, WB2OSZ
4+
// Copyright (C) 2011, 2013, 2014, 2015, 2016, 2017, 2023 John Langner, WB2OSZ
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -176,6 +176,7 @@ typedef int HANDLE;
176176
#include "audio.h"
177177
#include "ptt.h"
178178
#include "dlq.h"
179+
#include "demod.h" // to mute recv audio during xmit if half duplex.
179180

180181

181182
#if __WIN32__
@@ -1141,6 +1142,8 @@ void ptt_init (struct audio_s *audio_config_p)
11411142
*
11421143
*--------------------------------------------------------------------*/
11431144

1145+
// JWL - save status and new get_ptt function.
1146+
11441147

11451148
void ptt_set (int ot, int chan, int ptt_signal)
11461149
{
@@ -1164,6 +1167,19 @@ void ptt_set (int ot, int chan, int ptt_signal)
11641167
return;
11651168
}
11661169

1170+
// New in 1.7.
1171+
// A few people have a really bad audio cross talk situation where they receive their own transmissions.
1172+
// It usually doesn't cause a problem but it is confusing to look at.
1173+
// "half duplex" setting applied only to the transmit logic. i.e. wait for clear channel before sending.
1174+
// Receiving was still active.
1175+
// I think the simplest solution is to mute/unmute the audio input at this point if not full duplex.
1176+
1177+
#ifndef TEST
1178+
if ( ! save_audio_config_p->achan[chan].fulldup) {
1179+
demod_mute_input (chan, ptt_signal);
1180+
}
1181+
#endif
1182+
11671183
/*
11681184
* The data link state machine has an interest in activity on the radio channel.
11691185
* This is a very convenient place to get that information.

0 commit comments

Comments
 (0)