summaryrefslogtreecommitdiff
path: root/board/reef/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/reef/board.h')
-rw-r--r--board/reef/board.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/board/reef/board.h b/board/reef/board.h
index d3493e347f..72f2818a23 100644
--- a/board/reef/board.h
+++ b/board/reef/board.h
@@ -206,11 +206,12 @@
#define CONFIG_LID_ANGLE_SENSOR_BASE BASE_ACCEL
#define CONFIG_LID_ANGLE_SENSOR_LID LID_ACCEL
+/* Enable sensor fifo, must also define the _SIZE and _THRES */
+#define CONFIG_ACCEL_FIFO
/* FIFO size is in power of 2. */
-#define CONFIG_ACCEL_FIFO 512
-
+#define CONFIG_ACCEL_FIFO_SIZE 512
/* Depends on how fast the AP boots and typical ODRs */
-#define CONFIG_ACCEL_FIFO_THRES (CONFIG_ACCEL_FIFO / 3)
+#define CONFIG_ACCEL_FIFO_THRES (CONFIG_ACCEL_FIFO_SIZE / 3)
#ifndef __ASSEMBLER__