]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Modification that allows using a "voice keyer" with radios that
authorc vw <dl1ycf@darc.de>
Tue, 30 Mar 2021 15:38:43 +0000 (17:38 +0200)
committerc vw <dl1ycf@darc.de>
Tue, 30 Mar 2021 15:38:43 +0000 (17:38 +0200)
have a microphone jack.

new_protocol.c
old_protocol.c

index 2066e8f825e0f210e520c284a6f43ef577369df2..41cbb9b29ae556bd93184e6e232a6ebe38191543 100644 (file)
@@ -1956,7 +1956,16 @@ static void process_mic_data(int bytes) {
   for(i=0;i<MIC_SAMPLES;i++) {
     sample=(short)(buffer[b++]<<8);
     sample |= (short) (buffer[b++]&0xFF);
-    fsample = transmitter->local_microphone ? audio_get_next_mic_sample() : (float) sample * 0.00003051;
+    //
+    // If PTT comes from the radio, possibly use audio from BOTH sources
+    // we just add on since in most cases, only one souce will be "active"
+    //
+    if (local_ptt) {
+      fsample = (float) sample * 0.00003051;
+      if (transmitter->local_microphone) fsample +=  audio_get_next_mic_sample();
+    } else {
+      fsample = transmitter->local_microphone ? audio_get_next_mic_sample() : (float) sample * 0.00003051;
+    }
     add_mic_sample(transmitter,fsample);
   }
 }
index 47cb75719d450beedd99c7071559d23cb30810ac..7a3e92935992b62e0ecedb100c387aad89a0262b 100644 (file)
@@ -1318,7 +1318,19 @@ static void process_ozy_byte(int b) {
       mic_sample|=(short)(b&0xFF);
       mic_samples++;
       if(mic_samples>=mic_sample_divisor) { // reduce to 48000
-        fsample = transmitter->local_microphone ? audio_get_next_mic_sample() : (float) mic_sample * 0.00003051;
+        //
+        // if local_ptt is set, this usually means the PTT at the microphone connected
+        // to the SDR is pressed. In this case, we take audio from BOTH sources
+        // then we can use a "voice keyer" on some loop-back interface but at the same
+        // time use our microphone.
+        // In most situations only one source will be active so we just add.
+        //
+        if (local_ptt) {
+          fsample = (float) mic_sample * 0.00003051;
+          if (transmitter->local_microphone) fsample += audio_get_next_mic_sample();
+        } else {
+          fsample = transmitter->local_microphone ? audio_get_next_mic_sample() : (float) mic_sample * 0.00003051;
+        }
         add_mic_sample(transmitter,fsample);
         mic_samples=0;
       }