]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fixed IT CAT response
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Wed, 27 May 2020 21:43:33 +0000 (22:43 +0100)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Wed, 27 May 2020 21:43:33 +0000 (22:43 +0100)
rigctl.c

index 26692ff9ff066eed17d261a7dfbbf8feb8bf70c2..a1aab4ac1799c8cdbd3d68f09445681d394c9eea 100644 (file)
--- a/rigctl.c
+++ b/rigctl.c
@@ -713,6 +713,41 @@ int rit_on () {
   }
 }
 
+static int ts2000_mode(int m) {
+  int mode=1;
+  switch(m) {
+    case modeLSB:
+      mode=1;
+      break;
+    case modeUSB:
+      mode=2;
+      break;
+    case modeCWL:
+      mode=7;
+      break;
+    case modeCWU:
+      mode=3;
+      break;
+    case modeFMN:
+      mode=4;
+      break;
+    case modeAM:
+    case modeSAM:
+      mode=5;
+      break;
+    case modeDIGL:
+      mode=6;
+      break;
+    case modeDIGU:
+      mode=9;
+      break;
+    default:
+      break;
+  }
+  return mode;
+}
+
+
 gboolean parse_extended_cmd (char *command,CLIENT *client) {
   gboolean implemented=TRUE;
   char reply[256];
@@ -2548,6 +2583,7 @@ int parse_cmd(void *data) {
             receiver[0]->volume=(double)gain/255.0;
             update_af_gain();
           }
+          break;
         case 'I': //AI
           // set/read Auto Information
           implemented=FALSE;
@@ -2765,7 +2801,7 @@ int parse_cmd(void *data) {
             switch(vfo[active_receiver->id].mode) {
               case modeCWL:
               case modeCWU:
-                val=filter->low;
+                val=filter->low*2;
                 break;
               case modeAM:
               case modeSAM:
@@ -2789,8 +2825,8 @@ int parse_cmd(void *data) {
             switch(vfo[active_receiver->id].mode) {
               case modeCWL:
               case modeCWU:
-                filter->low=fw;
-                filter->high=fw;
+                filter->low=fw/2;
+                filter->high=fw/2;
                 break;
               case modeFMN:
                 if(fw==0) {
@@ -2860,11 +2896,14 @@ int parse_cmd(void *data) {
           send_resp(client->fd,reply);
           break;
         case 'F': //IF
-          sprintf(reply,"IF%011lld%04lld%+06lld%d%d000%d%d%d0%d%d%02d0;",
+          {
+          int mode=ts2000_mode(vfo[VFO_A].mode);
+          sprintf(reply,"IF%011lld%04lld%+06lld%d%d%d%02d%d%d%d%d%d%d%02d%d;",
                   vfo[VFO_A].ctun?vfo[VFO_A].ctun_frequency:vfo[VFO_A].frequency,
                   step,vfo[VFO_A].rit,vfo[VFO_A].rit_enabled,transmitter==NULL?0:transmitter->xit_enabled,
-                  mox,split,0,split?1:0,transmitter->ctcss_enabled,transmitter->ctcss);
+                  0,0,isTransmitting(),mode,0,0,split,transmitter->ctcss_enabled?2:0,transmitter->ctcss,0);
           send_resp(client->fd,reply);
+          }
           break;
         case 'S': //IS
           // set/read IF shift
@@ -2958,36 +2997,7 @@ int parse_cmd(void *data) {
         case 'D': //MD
           // set/read operating mode
           if(command[2]==';') {
-            int mode=1;
-            switch(vfo[VFO_A].mode) {
-              case modeLSB:
-                mode=1;
-                break;
-              case modeUSB:
-                mode=2;
-                break;
-              case modeCWL:
-                mode=7;
-                break;
-              case modeCWU:
-                mode=3;
-                break;
-              case modeFMN:
-                mode=4;
-                break;
-              case modeAM:
-              case modeSAM:
-                mode=5;
-                break;
-              case modeDIGL:
-                mode=6;
-                break;
-              case modeDIGU:
-                mode=9;
-                break;
-              default:
-                break;
-            }
+            int mode=ts2000_mode(vfo[VFO_A].mode);
             sprintf(reply,"MD%d;",mode);
             send_resp(client->fd,reply);
           } else if(command[3]==';') {
@@ -3168,7 +3178,7 @@ int parse_cmd(void *data) {
             sprintf(reply,"PC%03d;",(int)transmitter->drive);
             send_resp(client->fd,reply);
           } else if(command[5]==';') {
-            setDrive((double)atoi(&command[2]));
+            set_drive((double)atoi(&command[2]));
           }
           break;
         case 'I': //PI
@@ -3723,6 +3733,7 @@ int parse_cmd(void *data) {
           if(command[2]==';') {
             vfo_step(1);
           }
+          break;
         default:
           implemented=FALSE;
           break;