2016-03-27 23:17:40 +00:00
|
|
|
#include "clueboard1.h"
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-29 05:49:24 +00:00
|
|
|
void matrix_init_user(void) {
|
2016-03-27 23:17:40 +00:00
|
|
|
// leave these blank
|
2016-03-29 05:49:24 +00:00
|
|
|
}
|
2016-03-27 23:17:40 +00:00
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-29 05:49:24 +00:00
|
|
|
void matrix_scan_user(void) {
|
2016-03-27 23:17:40 +00:00
|
|
|
// leave these blank
|
2016-03-29 05:49:24 +00:00
|
|
|
}
|
2016-03-27 23:17:40 +00:00
|
|
|
|
2016-03-29 05:49:24 +00:00
|
|
|
void matrix_init_kb(void) {
|
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
|
|
rgblight_init();
|
|
|
|
#endif
|
2016-03-27 23:17:40 +00:00
|
|
|
|
2016-03-29 05:49:24 +00:00
|
|
|
matrix_init_user();
|
|
|
|
}
|
|
|
|
|
|
|
|
void matrix_scan_kb(void) {
|
|
|
|
matrix_scan_user();
|
|
|
|
}
|