Skip to content

Commit 2992340

Browse files
committed
Restore default sensor delay to normal
1 parent 92217cf commit 2992340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SensingKitLib/src/main/java/org/sensingkit/sensingkitlib/modules/AbstractNativeSensorModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public void startSensing() throws SKException {
7272

7373
this.isSensing = true;
7474

75-
boolean status = mSensorManager.registerListener(mSensorEventListener, mSensor, SensorManager.SENSOR_DELAY_FASTEST);
75+
boolean status = mSensorManager.registerListener(mSensorEventListener, mSensor, SensorManager.SENSOR_DELAY_NORMAL);
7676

7777
if (!status) {
7878
throw new SKException(TAG, "SensorModule '" + getSensorName() + "' could not be started.", SKExceptionErrorCode.UNKNOWN_ERROR);

0 commit comments

Comments
 (0)