diff --git a/src/fixate/drivers/dso/agilent_mso_x.py b/src/fixate/drivers/dso/agilent_mso_x.py index 7de7d04..5c9f936 100644 --- a/src/fixate/drivers/dso/agilent_mso_x.py +++ b/src/fixate/drivers/dso/agilent_mso_x.py @@ -757,7 +757,7 @@ def waveform_values(self, signal, file_name="", file_type="csv"): with open(file_name, "w") as f: f.write("x,y\n") for x_val, y_val in zip(x, y): - f.write(f"{x_val},{y_val}") + f.write(f"{x_val},{y_val}\n") elif file_name and file_type == "bin": raise NotImplementedError("Binary Output not implemented")