DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

Restart DAC-Scheme multiple Times

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.

0 Kudos
Message 1 of 2
(1,203 Views)

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

0 Kudos
Message 2 of 2
(1,151 Views)