qmk-firmware/keyboard/bantam44/Bantam44.c

25 lines
435 B
C
Raw Normal View History

2016-03-23 14:22:43 +00:00
#include "Bantam44.h"
__attribute__ ((weak))
void matrix_init_user(void) {
2016-03-23 14:22:43 +00:00
// leave these blank
}
2016-03-23 14:22:43 +00:00
__attribute__ ((weak))
void matrix_scan_user(void) {
2016-03-23 14:22:43 +00:00
// leave these blank
}
2016-03-23 14:22:43 +00:00
void matrix_init_kb(void) {
2016-03-23 14:22:43 +00:00
// put your keyboard start-up code here
// runs once when the firmware starts up
matrix_init_user();
}
2016-03-23 14:22:43 +00:00
void matrix_scan_kb(void) {
2016-03-23 14:22:43 +00:00
// put your looping keyboard code here
// runs every cycle (a lot)
matrix_scan_user();
}