From f5422a70b62e2b8cc75a87434a9901069ab953d4 Mon Sep 17 00:00:00 2001 From: andy Date: Tue, 5 Dec 2017 22:21:43 +0000 Subject: Enable tap dance and other features for Whitefox The custom matrix code was missing calls to matrix_*_quantum, disabling quantum features. --- keyboards/whitefox/matrix.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'keyboards/whitefox/matrix.c') diff --git a/keyboards/whitefox/matrix.c b/keyboards/whitefox/matrix.c index 9202ab023..ff334c03a 100644 --- a/keyboards/whitefox/matrix.c +++ b/keyboards/whitefox/matrix.c @@ -49,6 +49,7 @@ void matrix_init(void) memset(matrix, 0, MATRIX_ROWS); memset(matrix_debouncing, 0, MATRIX_ROWS); + matrix_init_quantum(); } uint8_t matrix_scan(void) @@ -102,6 +103,7 @@ uint8_t matrix_scan(void) } debouncing = false; } + matrix_scan_quantum(); return 1; } -- cgit v1.2.3-24-g4f1b