1
0
Fork 0

Most ergodox keymaps compiles on Infinity

There are linker errors due to missing led funcitonality though
This commit is contained in:
Fred Sundvik 2016-07-09 00:41:15 +03:00
parent b0376687f4
commit e01b4c3fd9
21 changed files with 46 additions and 32 deletions

View file

@ -63,6 +63,8 @@ void matrix_init(void)
memset(matrix, 0, MATRIX_ROWS);
memset(matrix_debouncing, 0, LOCAL_MATRIX_ROWS);
matrix_init_quantum();
}
uint8_t matrix_scan(void)
@ -127,6 +129,7 @@ uint8_t matrix_scan(void)
}
debouncing = false;
}
matrix_scan_quantum();
return 1;
}