SA/GEN integration tests + bugfixes

This commit is contained in:
Jan Käberich 2022-11-20 20:48:36 +01:00
parent ec6fae5822
commit 0c17288ece
11 changed files with 171 additions and 15 deletions

View file

@ -42,7 +42,7 @@ data = vna.query(":VNA:TRACE:DATA? S11")
# Returned data is just a string containing all the measurement points.
# Parsing the data returns a list containing frequency/complex tuples
S11 = vna.parse_trace_data(data)
S11 = vna.parse_VNA_trace_data(data)
for x in S11:
print(x)