<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: The Mystery Code Thread in BreakPoint</title>
    <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418746#M14965</link>
    <description>&lt;P&gt;I know where that code comes from and what its intent was. I came across it many years ago but never ended up using it for a potential project.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-AK2DM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Jan 2011 19:23:16 GMT</pubDate>
    <dc:creator>AnalogKid2DigitalMan</dc:creator>
    <dc:date>2011-01-18T19:23:16Z</dc:date>
    <item>
      <title>The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1416218#M14951</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Once in a while I run across some code that makes my head spin and I am trying to figure out one of the following questions:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;"What was the programmer thinking when wiring this??!"&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;"Is there any possible reason that this code makes sense and I am just not gettting it??"&lt;/STRONG&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV&gt;&lt;STRONG&gt;This thread should serve as a place to investigate such Code fragments. Maybe the collective brains of this forum can find a clear explanation. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;HR /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;.&lt;/DIV&gt;
&lt;DIV&gt;Let's have a look at a &lt;A rel="nofollow" href="http://forums.ni.com/ni/attachments/ni/170/548920/2/6KTimeDelay.vi" target="_self"&gt;small subVI program&lt;/A&gt; with a name containing "time delay" &lt;A rel="nofollow" href="http://forums.ni.com/t5/LabVIEW/Help-converting-LabVIEW-5-1-VI-to-LabVIEW-8-0-or-newer/m-p/1416124#M548917" target="_self"&gt;posted here&lt;/A&gt;.&lt;/DIV&gt;
&lt;DIV&gt;.&lt;/DIV&gt;
&lt;DIV&gt;&lt;IMG src="http://forums.ni.com/ni/attachments/ni/BreakPoint/14951/1/MysteryCode000.png" border="0" align="center" /&gt;&lt;/DIV&gt;
&lt;DIV&gt;.&lt;/DIV&gt;
&lt;DIV&gt;Look at the diagram picture. The only reason that I can think of is that the original problem description was: "&lt;EM&gt;Create a VI that will never stop if it is run in execution highlighting mode&lt;/EM&gt;". &lt;span class="lia-unicode-emoji" title=":face_with_open_mouth:"&gt;😮&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV&gt;.&lt;/DIV&gt;
&lt;DIV&gt;The VI will only work correctly if the bulk of of the loop content is guaranteed to execute within the same ms tick. (Else it will keep trying, possibly forever.) Fortunately it seems to work correctly as is, but why take the risk??&lt;/DIV&gt;
&lt;DIV&gt;.&lt;/DIV&gt;
&lt;DIV&gt;Is there are conceivable justification for all these wires? The tick count? The addition? The comparison? The while loop? Am I missing something obvious?&lt;/DIV&gt;
&lt;DIV&gt;.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;EM&gt;(The reason for the "invert" is clear. Back in the old days, loops only had "continue if true" mode for the termination condition.)&lt;/EM&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2011 06:31:24 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1416218#M14951</guid>
      <dc:creator>altenbach</dc:creator>
      <dc:date>2011-01-17T06:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1416536#M14954</link>
      <description>&lt;P&gt;Could that be a "over-load" detector?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm thinking that code running in parallel with other code will keep running until the app becomes CPU bound and there aren't enough slices left over for toher threads so that one can drop out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just guessing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2011 13:32:18 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1416536#M14954</guid>
      <dc:creator>Ben</dc:creator>
      <dc:date>2011-01-17T13:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1416954#M14956</link>
      <description>&lt;P&gt;Interesting guess. I highly doubt that the loop diagram will get sliced by a thread switch here, but I would not know... Let's do some testing!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even on a lightly loaded machine, there is a small chance that the wait is twice as long, simply because we might (by chance!) be very close to a tick count turnover. For example in the following code we can see that in a finite fraction of calls, the loop spins twice, thus doubling the delay. There is an even smaller chance that it spins three times, tripling the delay! The code is not deterministic!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/ni/attachments/ni/BreakPoint/14956/1/MysteryCode001.png" border="0" align="center" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now lets add two greedy while loops to gobble up all spare CPU (I am on a dual core system), and yes, the chance for a double-delay is 5x higher.... maybe you are on to something here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/ni/attachments/ni/BreakPoint/14956/3/MysteryCode002.png" border="0" align="center" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Still, would it really make a difference? Even here the chance for a double delay is less than one percent. Lots of code at the cost of determinism and no obvious gain. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, code such as this requires a diagram comment! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jan 2011 18:13:12 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1416954#M14956</guid>
      <dc:creator>altenbach</dc:creator>
      <dc:date>2011-01-17T18:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1417478#M14958</link>
      <description>&lt;P&gt;The butler coded it?&amp;nbsp; possibly forever?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;OMG (at the risk of offending certain participants) The code is a "Who done it!"&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 02:42:16 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1417478#M14958</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2011-01-18T02:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1417504#M14959</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/ni/attachments/ni/BreakPoint/14956/1/MysteryCode001.png" border="0" align="center" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Will the deceased body be found?&amp;nbsp;&amp;nbsp; Yup- under the uncommon circumstances described-Yet,&amp;nbsp; Probably the "corpus delectii" will not be in evidence.......&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/ni/attachments/ni/BreakPoint/14956/3/MysteryCode002.png" border="0" align="center" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;^^^ LowerLoop 1 we "hide the corpse"&amp;nbsp; ^^^ Lower Loop 2 we "destroy the time stage of the crime"&lt;/P&gt;
&lt;P&gt;CSI writers- The perfect crime ......&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, code such as this requires a diagram comment! ; Or a corpse!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;HR /&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 03:29:53 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1417504#M14959</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2011-01-18T03:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1417948#M14961</link>
      <description>&lt;P&gt;Hi Christian,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You alluded to but have not concidered a imporatant fact, this appears to be old code from prior to the option to "stop" if true for the termination terminal. Try runing the test with;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ESys.StdNParallel=0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(after restarting of course) in the LV ini file to force LV to run single threaded like in LV 5.0.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 12:55:14 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1417948#M14961</guid>
      <dc:creator>Ben</dc:creator>
      <dc:date>2011-01-18T12:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418462#M14962</link>
      <description>&lt;P&gt;Ah yes!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I can do the same (without impacting my entire development system!) by settting it to &lt;STRONG&gt;run in the UI thread&lt;/STRONG&gt;, here's what I found:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(1) Without the two extra while loops, and setting a 1ms wait, I get the following histogram of actual delays.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1ms: 26268&lt;/P&gt;
&lt;P&gt;2ms: 3205&lt;/P&gt;
&lt;P&gt;3ms: 239&lt;/P&gt;
&lt;P&gt;4ms: 8&lt;/P&gt;
&lt;P&gt;5ms: 0&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;inf: 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We get a &amp;gt;10% chance of extra delays!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(2) With the two extra while loops, &lt;STRONG&gt;the VI never finishes (!!)&lt;/STRONG&gt; and gets stuck in the inner while loop forever!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1ms: never&lt;/P&gt;
&lt;P&gt;2ms: never&lt;/P&gt;
&lt;P&gt;3ms: never&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;inf: 100% !!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This also means that if the application is not carefully designed and for example contains greedy polling loops, there is a good chance that the program locks up and can never finish!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did it ever make sense to "over-engineer" a time delay in such a way? Maybe!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has anyone else ever seen this construct? Could it be it was a widespread and accepted method to throttle sections of code in ancient times? I really don't know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this in fact was the functional intent, the VI name should have been more clear, e.g. "low priority time delay" or similar. Of course the complete lack of documentation is not helping either. No description, no diagram comments, etc.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 16:44:35 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418462#M14962</guid>
      <dc:creator>altenbach</dc:creator>
      <dc:date>2011-01-18T16:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418746#M14965</link>
      <description>&lt;P&gt;I know where that code comes from and what its intent was. I came across it many years ago but never ended up using it for a potential project.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-AK2DM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 19:23:16 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418746#M14965</guid>
      <dc:creator>AnalogKid2DigitalMan</dc:creator>
      <dc:date>2011-01-18T19:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418752#M14966</link>
      <description>&lt;P&gt;"I know where that code comes from and what its intent was."&amp;nbsp; Pretty cryptic!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 19:25:34 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418752#M14966</guid>
      <dc:creator>LV_Pro</dc:creator>
      <dc:date>2011-01-18T19:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418788#M14967</link>
      <description>&lt;P&gt;So we have a witnes be he ain't takin. He did give as clue "THe question drive us" so....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Twenty questions it is!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Q1) Is it used to detect the load on the CPU?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 19:43:02 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418788#M14967</guid>
      <dc:creator>Ben</dc:creator>
      <dc:date>2011-01-18T19:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418846#M14970</link>
      <description>&lt;P&gt;20 Questions? Man, I can't let you guys wait(ms) that long....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Q1 (Ben) Negative.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-AK2DM&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 20:13:55 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1418846#M14970</guid>
      <dc:creator>AnalogKid2DigitalMan</dc:creator>
      <dc:date>2011-01-18T20:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1419016#M14971</link>
      <description>&lt;P&gt;The code came from Parker/Compumotor&amp;nbsp;as part of an example to use with their Active X communications server for the 6K series of motion controllers.&lt;/P&gt;
&lt;P&gt;The sub vi in question simply served as a delay between serial writes and reads to allow the 6K keep communications in order.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A simple wait(ms) with flow contol would have sufficed. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I played around with&amp;nbsp;some of the Active X&amp;nbsp;circa 2004/05 but did not apply LabVIEW for the 5 axis laser CNC I built around the 6K. The operators already know the 6000 command set, why complicate things by adding another layer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have seen some very badly written code from another major optics/motion manufacturer, in the end in many cases I just start from scratch- just give me the prgorammers guide!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's my story and I'm stickin' to it!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-AK2DM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 22:10:26 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1419016#M14971</guid>
      <dc:creator>AnalogKid2DigitalMan</dc:creator>
      <dc:date>2011-01-18T22:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1419056#M14972</link>
      <description>&lt;P&gt;This is why I cringe when a customer tells me that they have picked out some piece of hardware, "but it has LabVIEW drivers". I have seen too many instances where it looked like they were written by the summer student intern, who had the LabVIEW DVD dropped on the desk with the directive to "write a driver for the M6000 widget line". Ahhhhhh!&amp;nbsp; Last fight was last fall when I was getting random LabVIEW crashes, traced it to a "dll" call, discovered that the dll was just a wrapper around a call to a common USB interface dll, but it wasn't written right. Calling the actually USB dll (after weedling the info of what the wrapper dll was actually trying to do) solved the problem, but at my billing rate it was an expensive "oopsey".&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2011 22:38:06 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1419056#M14972</guid>
      <dc:creator>LV_Pro</dc:creator>
      <dc:date>2011-01-18T22:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1420664#M14981</link>
      <description>&lt;P&gt;The thought process is probably like this: Wait has a wait time input and a ms output, thus the output is the ms counter when the wait is over (making it a normal add ...) Therefore i must check against the current time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/Y&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jan 2011 23:25:26 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1420664#M14981</guid>
      <dc:creator>Yamaeda</dc:creator>
      <dc:date>2011-01-19T23:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: The Mystery Code Thread</title>
      <link>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1480574#M15208</link>
      <description>&lt;P&gt;The mystery vi&amp;nbsp;just showed&amp;nbsp;up in this post attached as "6KTimeDelay"!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.ni.com/t5/LabVIEW/Compumotor-6K-4-used-to-drive-goniometer-table/td-p/1480556" rel="nofollow" target="_blank"&gt;http://forums.ni.com/t5/LabVIEW/Compumotor-6K-4-used-to-drive-goniometer-table/td-p/1480556&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-AK2DM&lt;/P&gt;</description>
      <pubDate>Wed, 09 Mar 2011 22:06:43 GMT</pubDate>
      <guid>https://forums.ni.com/t5/BreakPoint/The-Mystery-Code-Thread/m-p/1480574#M15208</guid>
      <dc:creator>AnalogKid2DigitalMan</dc:creator>
      <dc:date>2011-03-09T22:06:43Z</dc:date>
    </item>
  </channel>
</rss>

