diff options
author | alex-ong <the.onga@gmail.com> | 2019-01-26 16:56:01 +1100 |
---|---|---|
committer | alex-ong <the.onga@gmail.com> | 2019-01-26 16:56:01 +1100 |
commit | 39ca330f103bf85fd29b0fb595469221c9c3680c (patch) | |
tree | 3c6bc25ec41d7445c107104db1417a1cedee539e /tmk_core/common/debounce.h | |
parent | c9ba618654417ec115809a031d315f8327c79ad4 (diff) |
DO NOT USE - Removed debounce from TMK.
Diffstat (limited to 'tmk_core/common/debounce.h')
-rw-r--r-- | tmk_core/common/debounce.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tmk_core/common/debounce.h b/tmk_core/common/debounce.h deleted file mode 100644 index fe3effab32..0000000000 --- a/tmk_core/common/debounce.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef DEBOUNCE_H -#define DEBOUNCE_H -#include <stdbool.h> -#include <stdint.h> -#include "matrix.h" -#ifdef __cplusplus -extern "C" { -#endif - /* called to initialize any data stores your implementation has*/ - void matrix_debounce_init(void); - /* call this every keyboard_task to debounce the matrix*/ - void matrix_debounce(void); - /* matrix state on row */ - matrix_row_t matrix_debounce_get_row(uint8_t row); - /* whether a switch is on */ - bool matrix_debounce_is_on(uint8_t row, uint8_t col); - -#ifdef __cplusplus -} -#endif -#endif |