]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
improvements for DIVERSITY
authorc vw <dl1ycf@darc.de>
Mon, 13 Jan 2020 18:21:00 +0000 (19:21 +0100)
committerc vw <dl1ycf@darc.de>
Mon, 13 Jan 2020 18:21:00 +0000 (19:21 +0100)
old_protocol.c

index b5b0fdb684c1c1191a9ede0e76c7f2c93c9e097b..ccb75d427d8ccfb0bcadc10ae6c27c46baea1a6e 100644 (file)
@@ -1198,6 +1198,11 @@ void ozy_send_buffer() {
 
 
     output_buffer[C4]=0x04;  // duplex
+    //
+    // This is used to phase-synchronize RX1 and RX2 on some boards
+    // and enforces that the RX1 and RX2 frequencies are the same.
+    //
+    if (diversity_enabled) output_buffer[C4] |= 0x80;
 
     // 0 ... 7 maps on 1 ... 8 receivers
     output_buffer[C4]|=(num_hpsdr_receivers-1)<<3;
@@ -1429,7 +1434,12 @@ void ozy_send_buffer() {
          if (isTransmitting()) {
             output_buffer[C1]=0x3F;
           } else {
-            output_buffer[C1]=0x20 | (adc_attenuation[receiver[1]->adc] & 0x1F);
+           // if diversity is enabled, use RX1 att value for RX2
+            if (diversity_enabled) {
+              output_buffer[C1]=0x20 | (adc_attenuation[receiver[0]->adc] & 0x1F);
+           } else {
+              output_buffer[C1]=0x20 | (adc_attenuation[receiver[1]->adc] & 0x1F);
+           }
           }
         }
         output_buffer[C2]=0x00; // ADC3 attenuator disabled.