diff options
author | Lars Amsel <lars.amsel@ni.com> | 2022-01-13 08:44:52 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-01-13 14:32:31 -0600 |
commit | 9ad4bedd86c68824179d31b25f5ff1b5fa96bdcf (patch) | |
tree | 10567d0f14aea70dfbd140ba899b2fc6659d0141 /host/python | |
parent | 121b6c560cacfb5deacdee664dd1f32cafef7b3d (diff) | |
download | uhd-9ad4bedd86c68824179d31b25f5ff1b5fa96bdcf.tar.gz uhd-9ad4bedd86c68824179d31b25f5ff1b5fa96bdcf.tar.bz2 uhd-9ad4bedd86c68824179d31b25f5ff1b5fa96bdcf.zip |
fixup! uhd: Allow pass raw IQ data array to tone generator
Diffstat (limited to 'host/python')
-rw-r--r-- | host/python/uhd/usrp/cal/tone_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/python/uhd/usrp/cal/tone_gen.py b/host/python/uhd/usrp/cal/tone_gen.py index 3234e5bf1..9e7407cc4 100644 --- a/host/python/uhd/usrp/cal/tone_gen.py +++ b/host/python/uhd/usrp/cal/tone_gen.py @@ -66,7 +66,7 @@ class ToneGenerator(WaveformGenerator): """ Class that can output a tone based on WaveformGenerator """ - def __init__(rate, freq, ampl, streamer=None): + def __init__(self, rate, freq, ampl, streamer=None): super().__init__( uhd.dsp.signals.get_continuous_tone(rate, freq, ampl), streamer) |