Hello! I'm trying to play some sequence on urukul in loop, but when I set 100*ns delay, it throws an underflow exception. That's the code:

self.devicesUrukul[0].set(200e6, 0.0, 0.5)
for i in range(10000000):
self.devicesUrukul[0].sw.set_o(True)
delay(1000ns)
self.devicesUrukul[0].sw.set_o(False)
delay(1000
ns)

But in urukul description there is 1ns temporal resolution of RF switch, How can I make urukul produce more precise impulse sequences? Thank you.

Resolution and throughput are two different things.