LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

about using external clock to control the timed sequence

Hi there,

  I just find that in LV2013, there supports timed sequence and I can set to use the external clock as the timing source. But I wonder in that case, do I still have to control the priority and CPU resource? In my application, I choose PFI1 as the source of timing and PFI1 is connecting to the an external clock of 5kHz (the frequency of the clock is fix and not changable). But in the labview code, I need 1kHz clock, is there any way to force the clock rate for the timed sequence to 1kHz even though the actual rate is 5Hz?

0 Kudos
Message 1 of 18
(3,689 Views)

You can use a Timed While Loop, and two nested Case structures to accomplish the intended behavior.

 

Plug the Quotient/Remainder vi into the Itteration counter of the while loop, and divide by five.  Check for =0? to trigger the outer case.

 

On the outside of the While loop, keep an array of strings constant, consisting of the individual steps of the sequence.  Also add a  Shift Register, initialized to Zero. This will be your index into the array, so you will need to increment it each time before you leave the true case. 

 

Use the incremented shift register value and the array size to determine when to quit the while loop.

 

The innermost Case structure will contain your individual sequence steps.

 

 

Machine Vision, Robotics, Embedded Systems, Surveillance

www.movimed.com - Custom Imaging Solutions
0 Kudos
Message 2 of 18
(3,650 Views)
Timed structures are intended for real time targets and should be avoided on Windows!

If you are synchronizing with daq, channel pulses will trigger the loop to execute (assuming it has finished it previous execution). On windows this same thing can be gotten by puting a DAQmx Wait For Next Sample Clock function at the end of the loop.
Craig H. | CLA CTA CLED | Applications Engineer | NI Employee 2012-2023
0 Kudos
Message 3 of 18
(3,631 Views)
-Sorry i didn't understand properly, which external Hardware you are using?
-Please add vi, so that it will be more clear.
-Please check this if it helps in anyway for using external Timing source for triggering timed structures.
http://www.ni.com/white-paper/11466/en/
-Check this resettable timed loops,
http://www.ni.com/example/27929/en/
Thanks
uday
0 Kudos
Message 4 of 18
(3,568 Views)

@Craig_ wrote:
Timed structures are intended for real time targets and should be avoided on Windows!

If you are synchronizing with daq, channel pulses will trigger the loop to execute (assuming it has finished it previous execution). On windows this same thing can be gotten by puting a DAQmx Wait For Next Sample Clock function at the end of the loop.

I was using flat sequence and Delay function like below. But it is very bad in time control by using Delay function

 

work.png

 

Some times it will have extra delay from 3ms to 500ms. That is too much delay. But by using the timed sequence, with setting very high priority, I pretty satisfy with the delay even I used that in windows. As for your suggestion on DAQmx Wait For Next Sample, I don't know how to use that on the sequence (what I am working on is flat sequence not a loop).

0 Kudos
Message 5 of 18
(3,524 Views)

@MoviJOHN wrote:

You can use a Timed While Loop, and two nested Case structures to accomplish the intended behavior.

 

Plug the Quotient/Remainder vi into the Itteration counter of the while loop, and divide by five.  Check for =0? to trigger the outer case.

 

On the outside of the While loop, keep an array of strings constant, consisting of the individual steps of the sequence.  Also add a  Shift Register, initialized to Zero. This will be your index into the array, so you will need to increment it each time before you leave the true case. 

 

Use the incremented shift register value and the array size to determine when to quit the while loop.

 

The innermost Case structure will contain your individual sequence steps.

 

 


Thanks for your reply. But my question is do we have to divide the clock in code ourselve or just set the clock rate as 1kHz even the actual rate is 5kHz. Using nested loop might cause an issue, I need to control the time in millisecond level, adding nested structure will cause additional time delay.

0 Kudos
Message 6 of 18
(3,521 Views)

@udka wrote:
-Sorry i didn't understand properly, which external Hardware you are using?
-Please add vi, so that it will be more clear.
-Please check this if it helps in anyway for using external Timing source for triggering timed structures.
http://www.ni.com/white-paper/11466/en/
-Check this resettable timed loops,
http://www.ni.com/example/27929/en/

clk.png

 

As shown in above code, I have an external clock signal connected to PFI0 pin which will be used as the counter clock. And I use the counter clock to drive the timed sequence. But my external clock (is a circuit created by 555 timer and output constant rate of 5kHz) is working at a fix frequence, if I set the rate to be 1000, so will the timed sequence use 1kHz or 5kHz as the clock? When I use external clock as source, what is the unit of Start time. always 1ms or something else? Sorry, I don't have the hardware to test the code now so I want to post the question here.

0 Kudos
Message 7 of 18
(3,514 Views)

Hi dragondriver,

 

I have some questions that might help answer this:

 

- what DAQ hardware are you using?

- what is the bigger picture? Why do you want to do this?

 

Rahul B.
0 Kudos
Message 8 of 18
(3,372 Views)

@National_Burritos wrote:

Hi dragondriver,

 

I have some questions that might help answer this:

 

- what DAQ hardware are you using?

- what is the bigger picture? Why do you want to do this?

 


Hi Burritos,

  I am using 6711. The reason I need the timed structure as shown in the last diagram is that in each frame, I need to perform some tasks and to output some digital or analog to external device. The timing (millisecond level) is very critical. In my old code, I only use the Wait to control the timing but it is very possible it miss the right time before jump to next frame, which cause unexpected result on the experiment. I then find the time structure, I try that with the builitin timer and highest priority, I found that it helps and the result is much better though it still have delay sometimes. So I am thinking to use external clock to drive the timed structure so the Wait between framew do not rely on the clock in OS.

0 Kudos
Message 9 of 18
(3,351 Views)

It's still going to have to wait to get CPU time from the OS, so using that source won't improve the jitter.

 

You really need a Real-Time system for this application so that you can get bounded jitter and determinism! 

 

Check out this white paper:

 

 

What is a Real-Time Operating System (RTOS)? http://www.ni.com/white-paper/3938/en/

Craig H. | CLA CTA CLED | Applications Engineer | NI Employee 2012-2023
0 Kudos
Message 10 of 18
(3,334 Views)