1.7 dev version G

This commit is contained in:
wb2osz 2023-05-08 03:23:26 +01:00
parent b1727345e0
commit 24a06aef9e
3 changed files with 3 additions and 3 deletions

View File

@ -927,7 +927,7 @@ int demod_get_sample (int a)
* *
*--------------------------------------------------------------------*/ *--------------------------------------------------------------------*/
static int mute_input[MAX_CHANS]; static volatile int mute_input[MAX_CHANS];
// New in 1.7. // New in 1.7.
// A few people have a really bad audio cross talk situation where they receive their own transmissions. // A few people have a really bad audio cross talk situation where they receive their own transmissions.

View File

@ -301,7 +301,7 @@ int main (int argc, char *argv[])
text_color_init(t_opt); text_color_init(t_opt);
text_color_set(DW_COLOR_INFO); text_color_set(DW_COLOR_INFO);
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__); //dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "F", __DATE__); dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION); //dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);

View File

@ -1175,7 +1175,7 @@ void ptt_set (int ot, int chan, int ptt_signal)
// I think the simplest solution is to mute/unmute the audio input at this point if not full duplex. // I think the simplest solution is to mute/unmute the audio input at this point if not full duplex.
#ifndef TEST #ifndef TEST
if ( ! save_audio_config_p->achan[chan].fulldup) { if ( ot == OCTYPE_PTT && ! save_audio_config_p->achan[chan].fulldup) {
demod_mute_input (chan, ptt_signal); demod_mute_input (chan, ptt_signal);
} }
#endif #endif