I am trying to use the 89600 VSA API and determine when my DAC is in overload (i.e. when the little OV1 marker appears on the trace)
How do I query the device to get this data??
I have come across "objTrace.RawDataStatus" in the API reference but have had no luck in decyphering the results.
How do I query the device to get this data??
I have come across "objTrace.RawDataStatus" in the API reference but have had no luck in decyphering the results.
VsaTrcDataStatus EnumerationDescription
Specifies the trace indicator messages.
Member Description
vsaTrcDatStaOverload Indicates trace contains an ADC overload.
With this information you can create a statement like:
Overload = (objTrace.RawDataStatus And vsaTrcDatStaOverload) <> 0