Solution
The NI VeriStand System Definition File is just an XML that you should be able to parse with the help of .NET APIs in NI LabVIEW.
The steps involved to access the Custom Device Channel would be:
- Refer Constructor Node topic in NI LabVIEW Help to understand how .NET API .dlls can be called in LabVIEW.
- Call NIVeriStandSystemDefinitionAPI.dll in the Constructor node in order to instantiate a class within the .NET assembly. This assembly is located at : <LabVIEW Installation Directory>\VeriStand 20xx\.
- Use Property and Invoke Nodes in Application Control VIs and Functions to access properties and methods of the class by simply wiring in the class reference from the Constructor Node to the property or Invoke Node.
You will need to access the
CustomDeviceChannel Class first and then use the Property node to access the Channel values.