![Acqiris SA230E Скачать руководство пользователя страница 58](http://html1.mh-extra.com/html/acqiris/sa230e/sa230e_user-manual_2840728058.webp)
4.4 Equalization
58
Acqiris SA230E User's Manual
Driver
Attribute / Property (Boolean)
Description
IVI-C
AQMD3_ATTR_ACQUISITION_ERROR_ON_
OVERRANGE_ENABLED
When set to true, all Fetch and Read methods will
return an error if the ADC was in overrange (i.e.
some samples are outside of the numeric range
of the ADC output).
Default is true .
IVI.NET
IAqMD3Acquisition.ErrorOnOverrangeEnabled
Driver
Error
Description
IVI-C
AQMD3_ERROR_ADC_OVERRANGE
ADC is in overrange acquisition data is invalid.
IVI.NET
Acqiris.AqMD3.AdcoverrangeException
Example (pseudo-instructions)
//Acquired data reading procedure
Fetch();
If (ERROR_ADC_OVERRANGE) {
ErrorOnOverrangeEnabled=false; // allow fetch of overrange data
Fetch();
ErrorOnOverrangeEnabled=true; // reset
}