clueboard1.c 284 B

12345678910111213141516171819
  1. #include "clueboard1.h"
  2. __attribute__ ((weak))
  3. void matrix_init_user(void) {
  4. // leave these blank
  5. }
  6. __attribute__ ((weak))
  7. void matrix_scan_user(void) {
  8. // leave these blank
  9. }
  10. void matrix_init_kb(void) {
  11. matrix_init_user();
  12. }
  13. void matrix_scan_kb(void) {
  14. matrix_scan_user();
  15. }