summaryrefslogtreecommitdiff
path: root/board/strago
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2015-06-26 16:15:37 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-07-15 02:07:01 +0000
commitc0f78b4c0aca20203fefbc96c7e52c709455c06b (patch)
tree847f40c9332ee97b3855200520010b8e078e045c /board/strago
parent3b55292cdb76f1acd540b89ce16a24fda863bc62 (diff)
downloadchrome-ec-c0f78b4c0aca20203fefbc96c7e52c709455c06b.tar.gz
motion: Add sample frequency per sensor
Store at which frequency each sensor should be sampled. This frequency is different from the sensor frequency: - sensor frequency: frequency at which the sensor produce information. - sensor sampling frequency: frequency at the which the EC gater information. If 2 sensors must be sampled at very different frequency, we don't want to oversample the slow one, and filling the software FIFO unnecessarily. BRANCH=smaug TEST=Unit test. Check that frequency is correct when sensor frequencies change from IIO driver. BUG=chrome-os-partner:39900 Change-Id: I4272963413f53d4ca004e26639dc7a2affd317eb Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/284616 Reviewed-by: Alec Berg <alecaberg@chromium.org>
Diffstat (limited to 'board/strago')
-rw-r--r--board/strago/board.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/board/strago/board.c b/board/strago/board.c
index 05c9761ac1..ac5a8a5c7f 100644
--- a/board/strago/board.c
+++ b/board/strago/board.c
@@ -130,7 +130,8 @@ struct motion_sensor_t motion_sensors[] = {
.rot_standard_ref = &base_standard_ref,
.default_config = {
.odr = 100000,
- .range = 2
+ .range = 2,
+ .ec_rate = SUSPEND_SAMPLING_INTERVAL,
}
},
{.name = "Lid Accel",
@@ -145,7 +146,8 @@ struct motion_sensor_t motion_sensors[] = {
.rot_standard_ref = &lid_standard_ref,
.default_config = {
.odr = 100000,
- .range = 2
+ .range = 2,
+ .ec_rate = SUSPEND_SAMPLING_INTERVAL,
}
},
};