From e28075bea934059389757437fced42033dfaec4a Mon Sep 17 00:00:00 2001 From: klaute Date: Fri, 7 Oct 2016 19:57:45 +0200 Subject: [PATCH] Debug output removed from measurement script. --- tools/meas.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/meas.py b/tools/meas.py index 4100307..7de470d 100644 --- a/tools/meas.py +++ b/tools/meas.py @@ -719,12 +719,7 @@ if __name__ == "__main__": FILE.write("freqency;ratio;impedance;drive;a0;a1\n") j = 0 i = ((drive_str + 1) * 2.0) / 1000.0 - print meas_vswr - print meas_freq - print meas_imp - print meas_data - print meas_data[j] - print meas_data[j] + for m in meas_vswr: FILE.write("%f;%f;%f;%f;%d;%d\n" % (meas_freq[j], m, meas_imp[j], i, meas_data[j][1], meas_data[j][2])) j = j + 1