Commit 3411c5b9 authored by Adam Wujek's avatar Adam Wujek

sw:pytest: set pulse width explicitly to half of the period

fmc-fdelay-pulse does not set pulse width to 50% by default due to the
bug in it.
Signed-off-by: 's avatarAdam Wujek <dev_public@wujek.eu>
parent c95da8f4
......@@ -90,6 +90,7 @@ class FmcFineDelay(PulseGenerator):
"-m", "pulse",
"-r", "{:d}u".format(rel_time_us),
"-T", "{:d}n".format(period_ns),
"-w", "{:d}n".format(int(period_ns/2)),
"-c", str(count),
"-t"
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment