03-14-2006 01:22 PM
03-15-2006 09:15 AM
Hey kph. There's nothing built into the LV graph to have it display a clock, but you could create such a signal and append it to your data before sending it to the graph. The trick is that if you have 1000 samples in your data, to properly add a clock that has both a rising and falling edge per sample, you'll need to expand this to 2000 samples. Thus if a particular data line looked like this without adding the clock:
Data1: 0 0 1 0 1 1 0 0 (8 samples)
it would look like this with the clock:
Clock: 10 10 10 10 10 10 10 10 (16 samples)
Data1: 00 00 11 00 11 11 00 00 (16 samples)
Hope this helps,
Chris
03-15-2006 09:26 AM
03-15-2006 02:29 PM