Configuration
2
0
2
2
-0
2
31
Load Factory Settings
Loads the factory settings of all parameters on the device. A current parameter list is returned.
Asynchronous Function
public async Task<(bool Succ, List<Parameter> ParameterList, Error
ErrorDesc)> LoadDefaultParameterSetFromDevice()
Synchronous Function
public (bool Succ, List<Parameter> ParameterList, Error ErrorDesc)
LoadDefaultParameterSetFromDevice()
Possible error IDs: VSX_DRIVER_GENERAL_ERROR, VSX_DRIVER_DATA_ERROR, VSX-
_DRIVER_CONNECTION_ERROR
Read Out Sensor Data
Starts reading out sensor data. The sensor data for each trigger is packaged in VsxDynamic-
Container. The data can be called up with the GetDynamicContainer function. For more details,
see the container description. The "bufferSize" specifies how many containers can be buffered
by the driver, the "startCondition" specifies the container from which buffering should be per-
formed, and the "strategy" determines what should happen if the buffer is full. DROP_OLDEST
indicates that the oldest container stored is discarded, while DROP_WRITE means the latest
container received is discarded.
Asynchronous Function
public void ResetDynamicContainerGrabber(int bufferSize, int start-
Condition = -1, DataFunction.Strategy = DataFunction.Strat-
egy.DROP_OLDEST)
Synchronous Function
public void ResetDynamicContainerGrabber(int numberOfItems, int
startCondition = -1, Strategy strategy = Strategy.DROP_OLDEST)
Possible error IDs: None