09-21-2021 06:19 AM
Hello all,
I am trying to start a DAC-Sequence with different clock frequencies (Seq_Task.dac ) several times. This should not run in parallel but also be processed sequentially 50 times in a row.
Can someone tell me the best solution for this?
Thanks in advance.
09-23-2021 06:43 AM
Hi ml123456,
If I get you right, you have a DAC scheme and you want to run this 50 times. The easiest way is to have a scrip, loading the DAC scheme one time and the loop like this:
dim iLoop
Call SchemeLoad("Example.dac")
for iLoop = 1 to 50
Call SchemeCheck("normal")
Call SchemeMeasStart()
next
Greetings
Walter