diff options
author | Thibaud Marazano <thibaud.marazano@gmail.com> | 2018-02-08 15:24:05 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-06-20 19:02:32 -0500 |
commit | dc5b37126e5d556f629cd28071a413eb2aa3ff3e (patch) | |
tree | cc3a55d6acecb0326aa626e487f66142fe7d44bd /host | |
parent | e74cf7635ba3360b5b7002a2f7317941f65ffa16 (diff) | |
download | uhd-dc5b37126e5d556f629cd28071a413eb2aa3ff3e.tar.gz uhd-dc5b37126e5d556f629cd28071a413eb2aa3ff3e.tar.bz2 uhd-dc5b37126e5d556f629cd28071a413eb2aa3ff3e.zip |
python: removing unnecessary configuration
Removed "set_tx_rate" that sets all channels initially, because the
channel loop handles this.
Reviewed-by: Brent Stapleton <brent.stapleton@ettus.com>
Diffstat (limited to 'host')
-rw-r--r-- | host/python/usrp.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/host/python/usrp.py b/host/python/usrp.py index 6179a3602..4b4b87bea 100644 --- a/host/python/usrp.py +++ b/host/python/usrp.py @@ -87,7 +87,6 @@ class MultiUSRP(lib.usrp.multi_usrp): :param gain: TX gain (dB) :return: the number of transmitted samples """ - super(MultiUSRP, self).set_tx_rate(rate) for chan in channels: super(MultiUSRP, self).set_tx_rate(rate, chan) super(MultiUSRP, self).set_tx_freq(lib.types.tune_request(freq), chan) |