05-05-2011 07:36 AM
Hi
Like in C, if I dont want the compiler to see few lines of code I just // or /* them. Is there a way to do same thing for a loop on a block diagram in Labview.
Kind Regards
Austin
05-05-2011 07:50 AM
05-05-2011 08:06 AM
Also note that the CONDITIONAL DISABLE structure will let you include/exclude things - I use it for debugging code. It's like:
#ifdef Debugging
printf("Pressure is %0.1f, temp is %0.1f", P, T);
#end if
You define the symbols on the PROPERTIES page of the target, in the CONDITIONAL DISABLE SYMBOLS section.
Blog for (mostly LabVIEW) programmers: Tips And Tricks