aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/device/ipc
diff options
context:
space:
mode:
authorEric <ewild@sysmocom.de>2020-04-20 00:47:03 +0200
committerEric <ewild@sysmocom.de>2020-04-20 00:47:03 +0200
commit2120eb1e0a5d7cd3a0aceb3aa7ed54ed197a1b3d (patch)
treef619e4bff4461bf9fbe2fbc2384b881e5b739fc8 /Transceiver52M/device/ipc
parent6d3359e37bfd16a5d3128571731ece09c7ed76b1 (diff)
scaling val
Diffstat (limited to 'Transceiver52M/device/ipc')
-rw-r--r--Transceiver52M/device/ipc/ipc-driver-test.c1
-rw-r--r--Transceiver52M/device/ipc/shm.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/Transceiver52M/device/ipc/ipc-driver-test.c b/Transceiver52M/device/ipc/ipc-driver-test.c
index 55a8a09..58f5c58 100644
--- a/Transceiver52M/device/ipc/ipc-driver-test.c
+++ b/Transceiver52M/device/ipc/ipc-driver-test.c
@@ -159,6 +159,7 @@ static int ipc_tx_info_cnf()
ipc_prim->u.info_cnf.max_rx_gain = 70.0;
ipc_prim->u.info_cnf.min_tx_gain = 0.0;
ipc_prim->u.info_cnf.max_tx_gain = 63.0;
+ ipc_prim->u.info_cnf.iq_scaling_val = 0.3;
ipc_prim->u.info_cnf.max_num_chans = 2;
OSMO_STRLCPY_ARRAY(ipc_prim->u.info_cnf.dev_desc, "Hello To my Virtual device!");
chan_info = ipc_prim->u.info_cnf.chan_info;
diff --git a/Transceiver52M/device/ipc/shm.h b/Transceiver52M/device/ipc/shm.h
index 0ad0fd9..6565f5b 100644
--- a/Transceiver52M/device/ipc/shm.h
+++ b/Transceiver52M/device/ipc/shm.h
@@ -163,6 +163,7 @@ struct ipc_sk_if_info_cnf {
double max_rx_gain;
double min_tx_gain;
double max_tx_gain;
+ double iq_scaling_val;
uint32_t max_num_chans;
char dev_desc[200];
struct ipc_sk_if_info_chan chan_info[0];