aboutsummaryrefslogtreecommitdiffstats
path: root/dpd/src
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2018-02-21 11:33:33 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2018-02-21 11:33:33 +0100
commitfcd2de2abf3fab7573f8e430ebf90822c6eb4bb9 (patch)
tree0385345fbda5f72824509933f71160f5a7173d09 /dpd/src
parentf9db3bdead5e96fdfc948efa9f3b03482018f923 (diff)
downloaddabmod-fcd2de2abf3fab7573f8e430ebf90822c6eb4bb9.tar.gz
dabmod-fcd2de2abf3fab7573f8e430ebf90822c6eb4bb9.tar.bz2
dabmod-fcd2de2abf3fab7573f8e430ebf90822c6eb4bb9.zip
adapt DPDCE to refactored SDR output RC
Diffstat (limited to 'dpd/src')
-rw-r--r--dpd/src/Adapt.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/dpd/src/Adapt.py b/dpd/src/Adapt.py
index 329ee20..a57602f 100644
--- a/dpd/src/Adapt.py
+++ b/dpd/src/Adapt.py
@@ -108,7 +108,7 @@ class Adapt:
returns the answer ODR-DabMod sends back.
An example message could be
- "get uhd txgain" or "set uhd txgain 50"
+ "get sdr txgain" or "set sdr txgain 50"
Parameter
---------
@@ -141,12 +141,12 @@ class Adapt:
# TODO this is specific to the B200
if gain < 0 or gain > 89:
raise ValueError("Gain has to be in [0,89]")
- return self.send_receive("set uhd txgain %.4f" % float(gain))
+ return self.send_receive("set sdr txgain %.4f" % float(gain))
def get_txgain(self):
"""Get the txgain value in dB for the ODR-DabMod."""
# TODO handle failure
- return float(self.send_receive("get uhd txgain")[0])
+ return float(self.send_receive("get sdr txgain")[0])
def set_rxgain(self, gain):
"""Set a new rxgain for the ODR-DabMod.
@@ -159,12 +159,12 @@ class Adapt:
# TODO this is specific to the B200
if gain < 0 or gain > 89:
raise ValueError("Gain has to be in [0,89]")
- return self.send_receive("set uhd rxgain %.4f" % float(gain))
+ return self.send_receive("set sdr rxgain %.4f" % float(gain))
def get_rxgain(self):
"""Get the rxgain value in dB for the ODR-DabMod."""
# TODO handle failure
- return float(self.send_receive("get uhd rxgain")[0])
+ return float(self.send_receive("get sdr rxgain")[0])
def set_digital_gain(self, gain):
"""Set a new rxgain for the ODR-DabMod.