]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Corrected AG/SQ commands in rigctl.
authorc vw <dl1ycf@darc.de>
Fri, 10 Sep 2021 15:16:30 +0000 (17:16 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 10 Sep 2021 15:16:30 +0000 (17:16 +0200)
rigctl.c

index d29aa9df44105ed5719210c42a70145ec7605e3c..f35a8c07ce64366bbc2051b525a8a988e1f83bca 100644 (file)
--- a/rigctl.c
+++ b/rigctl.c
@@ -802,7 +802,7 @@ gboolean parse_extended_cmd (char *command,CLIENT *client) {
             for(i=0;i<STEPS;i++) {
               if(steps[i]==step) break;
             }
-            if(i<=14) {
+            if(i<STEPS) {
               // send reply back
               sprintf(reply,"ZZAC%02d;",i);
               send_resp(client->fd,reply) ;
@@ -2605,11 +2605,11 @@ int parse_cmd(void *data) {
           break;
         case 'G': //AG
           // set/read AF Gain
-          if(command[2]==';') {
+          if(command[3]==';' && command[2]=='0') { // query, main receiver
             // send reply back (covert from 0..1 to 0..255)
-            sprintf(reply,"AG0%03d;",(int)(receiver[0]->volume*255.0));
+            sprintf(reply,"AG0%03d;",(int)(receiver[0]->volume*255.0+0.5));
             send_resp(client->fd,reply) ;
-          } else if(command[6]==';') {
+          } else if(command[6]==';' && command[2] == '0') {
             int gain=atoi(&command[3]);
             receiver[0]->volume=(double)gain/255.0;
             update_af_gain();
@@ -3684,13 +3684,13 @@ int parse_cmd(void *data) {
           if(command[3]==';') {
             int p1=atoi(&command[2]);
             if(p1==0) { // Main receiver
-              sprintf(reply,"SQ%d%03d;",p1,(int)((double)active_receiver->squelch/100.0*255.0));
+              sprintf(reply,"SQ%d%03d;",p1,(int)((double)active_receiver->squelch/100.0*255.0+0.5));
               send_resp(client->fd,reply);
             }
           } else if(command[6]==';') {
             if(command[2]=='0') {
               int p2=atoi(&command[3]);
-              active_receiver->squelch=(int)((double)p2/255.0*100.0);
+              active_receiver->squelch=(int)((double)p2/255.0*100.0+0.5);
               set_squelch();
             }
           } else {