summaryrefslogtreecommitdiff
path: root/common/motion_sense.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/motion_sense.c')
-rw-r--r--common/motion_sense.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/motion_sense.c b/common/motion_sense.c
index 7c7b8a55b5..651215ef34 100644
--- a/common/motion_sense.c
+++ b/common/motion_sense.c
@@ -243,6 +243,24 @@ void motion_sense_task(void)
}
}
+void accel_int_lid(enum gpio_signal signal)
+{
+ /*
+ * Print statement is here for testing with console accelint command.
+ * Remove print statement when interrupt is used for real.
+ */
+ CPRINTF("[%T Accelerometer wake-up interrupt occurred on lid]\n");
+}
+
+void accel_int_base(enum gpio_signal signal)
+{
+ /*
+ * Print statement is here for testing with console accelint command.
+ * Remove print statement when interrupt is used for real.
+ */
+ CPRINTF("[%T Accelerometer wake-up interrupt occurred on base]\n");
+}
+
/*****************************************************************************/
/* Console commands */
#ifdef CONFIG_CMD_LID_ANGLE