Skip to content

Commit 24a06ae

Browse files
committed
1.7 dev version G
1 parent b172734 commit 24a06ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/demod.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ int demod_get_sample (int a)
927927
*
928928
*--------------------------------------------------------------------*/
929929

930-
static int mute_input[MAX_CHANS];
930+
static volatile int mute_input[MAX_CHANS];
931931

932932
// New in 1.7.
933933
// A few people have a really bad audio cross talk situation where they receive their own transmissions.

src/direwolf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ int main (int argc, char *argv[])
301301
text_color_init(t_opt);
302302
text_color_set(DW_COLOR_INFO);
303303
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
304-
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "F", __DATE__);
304+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
305305
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
306306

307307

src/ptt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ void ptt_set (int ot, int chan, int ptt_signal)
11751175
// I think the simplest solution is to mute/unmute the audio input at this point if not full duplex.
11761176

11771177
#ifndef TEST
1178-
if ( ! save_audio_config_p->achan[chan].fulldup) {
1178+
if ( ot == OCTYPE_PTT && ! save_audio_config_p->achan[chan].fulldup) {
11791179
demod_mute_input (chan, ptt_signal);
11801180
}
11811181
#endif

0 commit comments

Comments
 (0)