]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/bantam44/bantam44.c
5d507adc3ab8c20550867558148f9207acc69199
[qmk_firmware.git] / keyboard / bantam44 / bantam44.c
1 #include "bantam44.h"
2
3 __attribute__ ((weak))
4 void matrix_init_user(void) {
5         // leave these blank
6 }
7
8 __attribute__ ((weak))
9 void matrix_scan_user(void) {
10         // leave these blank
11 }
12
13 void matrix_init_kb(void) {
14         // put your keyboard start-up code here
15         // runs once when the firmware starts up
16
17         matrix_init_user();
18 }
19
20 void matrix_scan_kb(void) {
21         // put your looping keyboard code here
22         // runs every cycle (a lot)
23
24         matrix_scan_user();
25 }