diff options
Diffstat (limited to 'dpd/src/RX_Agc.py')
-rw-r--r-- | dpd/src/RX_Agc.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dpd/src/RX_Agc.py b/dpd/src/RX_Agc.py index 670fbbb..f778dee 100644 --- a/dpd/src/RX_Agc.py +++ b/dpd/src/RX_Agc.py @@ -9,8 +9,6 @@ import datetime import os import logging import time -logging_path = os.path.dirname(logging.getLoggerClass().root.handlers[0].baseFilename) - import numpy as np import matplotlib matplotlib.use('agg') @@ -70,11 +68,14 @@ class Agc: def plot_estimates(self): """Plots the estimate of for Max, Median, Mean for different number of samples.""" + if self.c.plot_location is None: + return + self.adapt.set_rxgain(self.min_rxgain) time.sleep(1) dt = datetime.datetime.now().isoformat() - fig_path = logging_path + "/" + dt + "_agc.svg" + fig_path = self.c.plot_location + "/" + dt + "_agc.png" fig, axs = plt.subplots(2, 2, figsize=(3*6,1*6)) axs = axs.ravel() |