summaryrefslogtreecommitdiff
path: root/tmk_core/common/matrix.h
diff options
context:
space:
mode:
authortmk <hasu@tmk-kbd.com>2015-05-19 00:40:49 +0900
committertmk <hasu@tmk-kbd.com>2015-05-19 00:40:49 +0900
commit81137b7a61ef11df023e1f542840a80bfc1ca090 (patch)
tree92cbbfe97ca83ab5646c8cd48758207cdeceb615 /tmk_core/common/matrix.h
parent6014d1014e96a7b484699d4dd8c04292c0233b0e (diff)
parent80fd3b0b240a8840fbca1cc3cc70e76f5b52b888 (diff)
Merge branch 'ibm4704_fix_protocol'
Diffstat (limited to 'tmk_core/common/matrix.h')
-rw-r--r--tmk_core/common/matrix.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h
index 107ee72653..ec6f8cd431 100644
--- a/tmk_core/common/matrix.h
+++ b/tmk_core/common/matrix.h
@@ -43,7 +43,9 @@ extern "C" {
uint8_t matrix_rows(void);
/* number of matrix columns */
uint8_t matrix_cols(void);
-/* intialize matrix for scaning. should be called once. */
+/* should be called at early stage of startup before matrix_init.(optional) */
+void matrix_setup(void);
+/* intialize matrix for scaning. */
void matrix_init(void);
/* scan all key states on matrix */
uint8_t matrix_scan(void);