From de826ad7674c1bfebe3c78c1fb5f5647ed63404e Mon Sep 17 00:00:00 2001 From: Ruben Nitsche Date: Mon, 26 Feb 2024 15:27:25 +0100 Subject: [PATCH] Corrected integration time values for the OceanFX --- .../features/spectrometer/FlameXSpectrometerFeature.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libseabreeze/src/vendors/OceanOptics/features/spectrometer/FlameXSpectrometerFeature.cpp b/src/libseabreeze/src/vendors/OceanOptics/features/spectrometer/FlameXSpectrometerFeature.cpp index 024540ba..33959743 100644 --- a/src/libseabreeze/src/vendors/OceanOptics/features/spectrometer/FlameXSpectrometerFeature.cpp +++ b/src/libseabreeze/src/vendors/OceanOptics/features/spectrometer/FlameXSpectrometerFeature.cpp @@ -50,9 +50,9 @@ using namespace std; /* This value should have been located in constants file for non-probable */ /* spectrometer characteristics, not buried here */ -const long FlameXSpectrometerFeature::INTEGRATION_TIME_MINIMUM = 1000; -const long FlameXSpectrometerFeature::INTEGRATION_TIME_MAXIMUM = 60000000; -const long FlameXSpectrometerFeature::INTEGRATION_TIME_INCREMENT = 1000; +const long FlameXSpectrometerFeature::INTEGRATION_TIME_MINIMUM = 10; +const long FlameXSpectrometerFeature::INTEGRATION_TIME_MAXIMUM = 10000000; +const long FlameXSpectrometerFeature::INTEGRATION_TIME_INCREMENT = 1; const long FlameXSpectrometerFeature::INTEGRATION_TIME_BASE = 1; FlameXSpectrometerFeature::FlameXSpectrometerFeature(IntrospectionFeature *introspection, FlameXFastBufferFeature *fastBuffer ) {