aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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];