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/whitefox.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'keyboards/whitefox/whitefox.c') diff --git a/keyboards/whitefox/whitefox.c b/keyboards/whitefox/whitefox.c index d35bf8338..2555dc202 100644 --- a/keyboards/whitefox/whitefox.c +++ b/keyboards/whitefox/whitefox.c @@ -15,3 +15,20 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "whitefox.h" + +__attribute__ ((weak)) +void matrix_init_user(void) { +} + +__attribute__ ((weak)) +void matrix_scan_user(void) { +} + +void matrix_init_kb(void) { + matrix_init_user(); +}; + +void matrix_scan_kb(void) { + matrix_scan_user(); +}; + -- cgit v1.2.3-24-g4f1b