aboutsummaryrefslogtreecommitdiffstats
path: root/python/dpdce.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/dpdce.py')
-rwxr-xr-xpython/dpdce.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/dpdce.py b/python/dpdce.py
index 3b294eb..6c373fd 100755
--- a/python/dpdce.py
+++ b/python/dpdce.py
@@ -310,7 +310,9 @@ def engine_worker():
txframe_aligned, tx_ts, rxframe_aligned, rx_ts, rx_median, tx_median = meas.get_samples()
# Store all settings for pre-distortion, tx and rx
- adapt.dump()
+ utctime = datetime.datetime.utcnow()
+ dump_file = "adapt_{}.pkl".format(utctime.strftime("%s"))
+ adapt.dump(os.path.join(plot_path, dump_file))
# Collect logging data
off = symbol_align.calc_offset(txframe_aligned)