aboutsummaryrefslogtreecommitdiff
path: root/keyboards/al1/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/al1/matrix.c')
-rw-r--r--keyboards/al1/matrix.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/al1/matrix.c b/keyboards/al1/matrix.c
index 9d51f64de..0b7ec2c8a 100644
--- a/keyboards/al1/matrix.c
+++ b/keyboards/al1/matrix.c
@@ -28,6 +28,24 @@ inline uint8_t matrix_cols(void) {
28 return MATRIX_COLS; 28 return MATRIX_COLS;
29} 29}
30 30
31__attribute__ ((weak))
32void matrix_init_kb(void) {
33 matrix_init_user();
34}
35
36__attribute__ ((weak))
37void matrix_scan_kb(void) {
38 matrix_scan_user();
39}
40
41__attribute__ ((weak))
42void matrix_init_user(void) {
43}
44
45__attribute__ ((weak))
46void matrix_scan_user(void) {
47}
48
31void matrix_init(void) { 49void matrix_init(void) {
32 // initialize row and col 50 // initialize row and col
33 unselect_cols(); 51 unselect_cols();