02-20-2013 08:10 AM
Hello,
I am working on a Labview project that transmits a file to PIC18F to rewrite the EEPROM table. The problem I am running into is to do the process I need a 25ms delay per character is sent from the file. As I am new to Labview, I was curious on how to solve this problem. Thanks.
Chris
02-20-2013 08:23 AM
Use http://zone.ni.com/reference/en-XX/help/371361J-01/glang/wait_till_next_ms_multiple/ in you loop.
Example:
02-20-2013 09:27 AM
To put a delay between characters, it is not enough to just use a wait. You have to break up the string before you send it to the VISA Write. An oldie but goodie is here.
02-20-2013 10:49 AM
Thank you both for the information it has been of great help.