From e89d180d015128e8c57a955fabb68d92918d57c1 Mon Sep 17 00:00:00 2001 From: c vw Date: Fri, 10 Sep 2021 17:16:30 +0200 Subject: [PATCH] Corrected AG/SQ commands in rigctl. --- rigctl.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rigctl.c b/rigctl.c index d29aa9d..f35a8c0 100644 --- a/rigctl.c +++ b/rigctl.c @@ -802,7 +802,7 @@ gboolean parse_extended_cmd (char *command,CLIENT *client) { for(i=0;ifd,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 { -- 2.45.2