1
0
Fork 0

Enable tap dance and other features for Whitefox

The custom matrix code was missing calls to matrix_*_quantum, disabling quantum features.
This commit is contained in:
andy 2017-12-05 22:21:43 +00:00 committed by Jack Humbert
parent e3b3c1ef82
commit f5422a70b6
2 changed files with 19 additions and 0 deletions

View file

@ -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;
}