rf_zmq_imp: disable Tx baseband scaling

until the correct gain settings are documented and potential
mis-configuration are handled. It seems that the default
Tx/rx gains values are not working with this function.
This commit is contained in:
Andre Puschmann 2021-10-26 10:10:26 +02:00
parent e2d26b5a8c
commit 497e183487
1 changed files with 2 additions and 1 deletions

View File

@ -957,7 +957,8 @@ int rf_zmq_send_timed_multi(void* h,
}
// Scale according to current gain
srsran_vec_sc_prod_cfc(buf, tx_gain, buf, nsamples_baseband);
// TODO: document baseband scaling for ZMQ with gain settings, etc. before enabling
// srsran_vec_sc_prod_cfc(buf, tx_gain, buf, nsamples_baseband);
// Finally, transmit baseband
int n = rf_zmq_tx_baseband(&handler->transmitter[i], buf, nsamples_baseband);