Hello! I'm trying to start sinusoidal impulses simultaneously on different channels of urukul 9910 using the parallel decorator, as it shown in manual, but I get a "Collisions reported during kernel execution" error, and it doesn't work as it supposed.
The code I use:
for i in range(3000):
with parallel:
self.ch_device_0.set(frequency, 0.0, 0.5) #1
self.ch_device_1.set(frequency, 0.0, 0.5) #2
delay(1ms)
with parallel:
self.ch_device_0.set(frequency, 0.0, 0.0) #1
self.ch_device_1.set(frequency, 0.0, 0.0) #2
delay(1ms)
Thanks.