amarisoft_rf_driver.cfg.tmpl: only set trx offset for B210

all other RF devices do not required any offset

Change-Id: Id4c5f0bede5b09d59237cdd6a959a3663f1a1b37
This commit is contained in:
Andre Puschmann 2021-04-23 16:35:48 +02:00
parent 88b7fd2af6
commit 374a175c81
1 changed files with 6 additions and 4 deletions

View File

@ -14,8 +14,10 @@ rf_driver: {
tx_gain: ${trx.tx_gain}, /* TX gain (in dB) B2x0: 0 to 89.8 dB */
rx_gain: ${trx.rx_gain}, /* RX gain (in dB) B2x0: 0 to 73 dB */
% if trx.rf_dev_type == 'zmq':
tx_time_offset: 0,
% else:
// only the B210 requires a sample offset
% if "b200" in trx.rf_dev_args:
tx_time_offset: -150,
% else:
tx_time_offset: 0,
% endif