summaryrefslogtreecommitdiff
path: root/cros_ec/keyboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'cros_ec/keyboard.h')
-rw-r--r--cros_ec/keyboard.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/cros_ec/keyboard.h b/cros_ec/keyboard.h
new file mode 100644
index 0000000000..ad9ef6c220
--- /dev/null
+++ b/cros_ec/keyboard.h
@@ -0,0 +1,17 @@
+/* keyboard.h -
+ *
+ * (Chromium license) */
+
+#ifndef __CROS_EC_KEYBOARD_H
+#define __CROS_EC_KEYBOARD_H
+
+/* Register the board-specific keyboard matrix translation function.
+ * The callback function accepts col/row and returns the scan code.
+ */
+EcError CrKeyboardMatrixRegister(
+ int8_t col_num, int8_t row_num,
+ EcError (*callback)(
+ int8_t column, int8_t row, int8_t pressed,
+ uint8_t *scan_code, int32_t* len));
+
+#endif /* __CROS_EC_KEYBOARD_H */