diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-29 07:40:20 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-29 07:40:20 +0100 |
commit | 740d4815fda8737cc7f021999d30aeacd851b032 (patch) | |
tree | c6b1644be30f80b5a972b9d15dd1b55bc05b7aa8 /dpd/src | |
parent | 02c6e85a988149a2ee5d3f54e5120b664c5d6716 (diff) | |
download | dabmod-740d4815fda8737cc7f021999d30aeacd851b032.tar.gz dabmod-740d4815fda8737cc7f021999d30aeacd851b032.tar.bz2 dabmod-740d4815fda8737cc7f021999d30aeacd851b032.zip |
DPDCE: fix Adapt init and pickle usage
Diffstat (limited to 'dpd/src')
-rw-r--r-- | dpd/src/Adapt.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dpd/src/Adapt.py b/dpd/src/Adapt.py index c78c920..939e50e 100644 --- a/dpd/src/Adapt.py +++ b/dpd/src/Adapt.py @@ -239,20 +239,20 @@ class Adapt: "digital_gain": self.get_digital_gain(), "predistorter": self.get_predistorter() } - with open(path, "w") as f: + with open(path, "wb") as f: pickle.dump(d, f) return path def load(self, path): """Restore settings from a file""" - with open(path, "r") as f: + with open(path, "rb") as f: d = pickle.load(f) - self.set_txgain(d["txgain"]) - self.set_digital_gain(d["digital_gain"]) - self.set_rxgain(d["rxgain"]) - self.set_predistorter(d["predistorter"]) + self.set_txgain(d["txgain"]) + self.set_digital_gain(d["digital_gain"]) + self.set_rxgain(d["rxgain"]) + self.set_predistorter(d["predistorter"]) # The MIT License (MIT) # |