07-31-2008 03:07 PM
Problem Description :
I'm modifying an existing Labview project that had been working fine until I made a slight change. I'm getting following error:
"LabVIEW: An input parameter is invalid. NI-488: Command requires GPIB Controller to be Controller in Charge."
This occurs when code reaches Close File VI. The program use to end at this
point without complaint until I modified the program and added a while loop
outside the original routine.
Any clues I can start looking for?
Paul
07-31-2008 03:28 PM
07-31-2008 04:15 PM
You are also missing part of the error message. It says possible reason(s) and you should concentrate on possible reason 1 - "An input parameter is invalid. For example if the input is a path, the path might contain a character not allowed by the OS such as ? or @." Some of these old error codes are shared between LabVIEW and GPIB errors.
Make sure that nothing before the close file is actually causing an error and since the close file has only a single input (reference), make sure that the reference is correct. If you have things in a loop now, the number of times you open files has to match the number of times you close files.
08-06-2008 03:53 PM
09-16-2008 08:49 AM