projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e87aff
)
more tweaking
author
Ramakrishnan Muthukrishnan
<ram@rkrishnan.org>
Fri, 14 Jan 2022 09:58:53 +0000
(15:28 +0530)
committer
Ramakrishnan Muthukrishnan
<ram@rkrishnan.org>
Fri, 14 Jan 2022 09:58:53 +0000
(15:28 +0530)
rigctl.c
patch
|
blob
|
history
diff --git
a/rigctl.c
b/rigctl.c
index 9b433af6ec4e56d26ddaa5c8c9b78a7d6d67a959..5df1219954a1262f2369543b066a37b0f8cd6eb4 100644
(file)
--- a/
rigctl.c
+++ b/
rigctl.c
@@
-3463,9
+3463,9
@@
int parse_cmd(void *data) {
if (command[2] == ';') {
double att = 0.0;
if (have_rx_gain) {
- att = adc[active_receiver->adc].attenuation;
+ att = adc[active_receiver->adc].attenuation
+ 12.0
;
printf("after stage 1: %f\n", att);
- att = round(
((att + 12.0) * 99.0) / 60.0)
;
+ att = round(
att / 60.0) * 99.0
;
printf("after stage 2: %f\n", att);
} else {
att = adc[active_receiver->adc].attenuation;