From 798f5017233091059681743472e37092531f2d30 Mon Sep 17 00:00:00 2001
From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Fri, 24 Jun 2022 22:38:20 +0530
Subject: [PATCH] for hl2/radioberry, set gain instead of attenuation

---
 rigctl.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/rigctl.c b/rigctl.c
index 7a12457..a12075a 100644
--- a/rigctl.c
+++ b/rigctl.c
@@ -3463,7 +3463,7 @@ int parse_cmd(void *data) {
       if (command[2] == ';') {
         double att = 0.0;
         if (have_rx_gain) {
-          att = adc[active_receiver->adc].attenuation + 12.0;
+          att = adc[active_receiver->adc].gain + 12.0;
         } else {
           att = adc[active_receiver->adc].attenuation;
           att = round((att * 99.0) / 31.0);
@@ -3477,10 +3477,11 @@ int parse_cmd(void *data) {
 
           if (have_rx_gain) {
               att = attI - 12.0;
+	      set_rf_gain(active_receiver->id, att);
           } else {
               att = (attI * 31.0) / 99.0;
+	      set_attenuation_value(att);
           }
-          set_attenuation_value(att);
       }
       break;
     case 'C': // RC
-- 
2.45.2