summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Granata <egranata@chromium.org>2019-02-12 11:11:19 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2019-02-12 20:02:57 +0000
commit147a5cae414f22bfe1a3e0b1503647c66bbfa4da (patch)
tree1fca1587df40da9f58e9c010cd278836ca352b59
parent9bbef08c79bf91690265ed3ecce06c6e4d16bce6 (diff)
downloadchrome-ec-147a5cae414f22bfe1a3e0b1503647c66bbfa4da.tar.gz
robo360: reduce sensor FIFO size to 256
A smaller FIFO size is required to pass CTS batching test cases BRANCH=coral BUG=b:123038909 TEST=run CTS tests: testAccelerometer_fastest_batching testGyroscope_fastest_batching testAccelerometer_50hz_batching testGyroscope_50hz_batching Change-Id: I924125ea5c4ce773a91c0633546e0816718ce0c6 Signed-off-by: Enrico Granata <egranata@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/1467544 Reviewed-by: Gwendal Grignou <gwendal@google.com> Commit-Queue: Gwendal Grignou <gwendal@google.com> Tested-by: Gwendal Grignou <gwendal@google.com>
-rw-r--r--board/coral/board.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/coral/board.h b/board/coral/board.h
index 7685807ce9..62a118b84e 100644
--- a/board/coral/board.h
+++ b/board/coral/board.h
@@ -212,7 +212,7 @@
#define CONFIG_DYNAMIC_MOTION_SENSOR_COUNT
/* FIFO size is in power of 2. */
-#define CONFIG_ACCEL_FIFO 512
+#define CONFIG_ACCEL_FIFO 256
/* Depends on how fast the AP boots and typical ODRs */
#define CONFIG_ACCEL_FIFO_THRES (CONFIG_ACCEL_FIFO / 3)