From: Ramakrishnan Muthukrishnan <ram@leastauthority.com>
Date: Wed, 4 Jan 2023 17:20:00 +0000 (+0530)
Subject: when nr is on, nr2,nr3 and nr4 should be off
X-Git-Url: https://git.rkrishnan.org/pf/components//%22%22.?a=commitdiff_plain;h=b0f5b874663f300056173b1ddd9dbdd06462999f;p=pihpsdr.git

when nr is on, nr2,nr3 and nr4 should be off

Similarly, when nr2 is on, nr, nr3 and nr4 should be off
---

diff --git a/rigctl.c b/rigctl.c
index b3a9ea2..6cef7d9 100644
--- a/rigctl.c
+++ b/rigctl.c
@@ -1996,6 +1996,8 @@ gboolean parse_extended_cmd(char *command, CLIENT *client) {
               receiver[0]->nr = atoi(&command[4]);
               if (receiver[0]->nr) {
                   receiver[0]->nr2 = 0;
+                  receiver[0]->nr3 = 0;
+                  receiver[0]->nr4 = 0;
               }
               update_noise();
           }
@@ -2009,6 +2011,8 @@ gboolean parse_extended_cmd(char *command, CLIENT *client) {
               receiver[0]->nr2 = atoi(&command[4]);
               if (receiver[0]->nr2) {
                   receiver[0]->nr = 0;
+                  receiver[0]->nr3 = 0;
+                  receiver[0]->nr4 = 0;
               }
               update_noise();
           }