diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-29 06:43:49 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-12-29 06:43:58 +0100 |
commit | a62e05c9564045044df734fd3723b3f665ad91ae (patch) | |
tree | 5a9e1570362fe9a47fe581c292f3bd84f6fd3e82 /dpd/src/RX_Agc.py | |
parent | bf53849fba5796d1b98254a7eeab575a50ae7996 (diff) | |
download | dabmod-a62e05c9564045044df734fd3723b3f665ad91ae.tar.gz dabmod-a62e05c9564045044df734fd3723b3f665ad91ae.tar.bz2 dabmod-a62e05c9564045044df734fd3723b3f665ad91ae.zip |
DPD: Make logging to file optional in all modules, simplify apply_adapt_dumps
Diffstat (limited to 'dpd/src/RX_Agc.py')
-rw-r--r-- | dpd/src/RX_Agc.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dpd/src/RX_Agc.py b/dpd/src/RX_Agc.py index 670fbbb..7b5e0b6 100644 --- a/dpd/src/RX_Agc.py +++ b/dpd/src/RX_Agc.py @@ -9,7 +9,10 @@ import datetime import os import logging import time -logging_path = os.path.dirname(logging.getLoggerClass().root.handlers[0].baseFilename) +try: + logging_path = os.path.dirname(logging.getLoggerClass().root.handlers[0].baseFilename) +except AttributeError: + logging_path = None import numpy as np import matplotlib @@ -70,6 +73,9 @@ class Agc: def plot_estimates(self): """Plots the estimate of for Max, Median, Mean for different number of samples.""" + if logging_path is None: + return + self.adapt.set_rxgain(self.min_rxgain) time.sleep(1) |