aboutsummaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/common.h b/common.h
index 5730f47..028817c 100644
--- a/common.h
+++ b/common.h
@@ -27,10 +27,11 @@
extern volatile uint8_t wakeup;
/* wakeup sources */
-#define WAKE_ACCEL 0
-#define WAKE_GYRO 1
-#define WAKE_I2C 2
-#define WAKE_TIMER 3
+#define WAKE_ACCEL_HORIZON 0
+#define WAKE_ACCEL_SHAKE 1
+#define WAKE_GYRO 2
+#define WAKE_I2C 3
+#define WAKE_TIMER 4
#define shouldWakeup(x) (wakeup & (1 << x))
#define enableWakeup(x) wakeup |= 1 << x;