2016-03-23 14:22:43 +00:00
|
|
|
#include "Bantam44.h"
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-23 17:42:34 +00:00
|
|
|
void matrix_init_user(void) {
|
2016-03-23 14:22:43 +00:00
|
|
|
// leave these blank
|
2016-03-23 17:42:34 +00:00
|
|
|
}
|
2016-03-23 14:22:43 +00:00
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-23 17:42:34 +00:00
|
|
|
void matrix_scan_user(void) {
|
2016-03-23 14:22:43 +00:00
|
|
|
// leave these blank
|
2016-03-23 17:42:34 +00:00
|
|
|
}
|
2016-03-23 14:22:43 +00:00
|
|
|
|
2016-03-23 17:42:34 +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
|
|
|
|
|
2016-03-23 17:42:34 +00:00
|
|
|
matrix_init_user();
|
|
|
|
}
|
2016-03-23 14:22:43 +00:00
|
|
|
|
2016-03-23 17:42:34 +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)
|
|
|
|
|
2016-03-23 17:42:34 +00:00
|
|
|
matrix_scan_user();
|
|
|
|
}
|