From 7fb9ccc0094057afae0ea1a27e044dd00f3c99af Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 19 May 2021 16:07:55 +0200 Subject: [PATCH] Moved adc attenuation to ADC struct (2) --- rigctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigctl.c b/rigctl.c index ffd8a9d..d9496f7 100644 --- a/rigctl.c +++ b/rigctl.c @@ -3290,10 +3290,10 @@ int parse_cmd(void *data) { if(command[2]==';') { int att=0; if(have_rx_gain) { - att=(int)(adc_attenuation[active_receiver->adc]+12); + att=(int)(adc[active_receiver->adc].attenuation+12); att=(int)(((double)att/60.0)*99.0); } else { - att=(int)(adc_attenuation[active_receiver->adc]); + att=(int)(adc[active_receiver->adc].attenuation); att=(int)(((double)att/31.0)*99.0); } sprintf(reply,"RA%02d00;",att); -- 2.45.2