From a7adca16f465ba0119247785aaf3f9d45afd24d1 Mon Sep 17 00:00:00 2001 From: Wolfgang Wiedmeyer Date: Fri, 13 Jan 2017 11:35:47 +0100 Subject: Revert "libsensors: don't floor accelerometer value" This reverts commit 1ea8f299e6b9c46eea55a9fa6ebee88faf91220e. --- libsensors/AccelSensor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsensors/AccelSensor.cpp b/libsensors/AccelSensor.cpp index d5040c1..fddb2cd 100644 --- a/libsensors/AccelSensor.cpp +++ b/libsensors/AccelSensor.cpp @@ -111,7 +111,7 @@ int AccelSensor::setDelay(int32_t handle, int64_t ns) fd = open(input_sysfs_path, O_RDWR); if (fd >= 0) { char buf[80]; - sprintf(buf, "%lld", ns); + sprintf(buf, "%lld", ns / 10000000 * 10); // Some flooring to match stock value write(fd, buf, strlen(buf)+1); close(fd); return 0; -- cgit v1.1