2015-11-07 05:26:12 +00:00
|
|
|
#include "jd45.h"
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-10 16:28:34 +00:00
|
|
|
void matrix_init_user(void) {
|
2015-11-07 05:26:12 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-10 16:28:34 +00:00
|
|
|
void matrix_scan_user(void) {
|
2015-11-07 05:26:12 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-03-10 16:28:34 +00:00
|
|
|
void matrix_init_kb(void) {
|
2015-11-07 05:26:12 +00:00
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init_ports();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (matrix_init_user) {
|
|
|
|
(*matrix_init_user)();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-10 16:28:34 +00:00
|
|
|
void matrix_scan_kb(void) {
|
2015-11-07 05:26:12 +00:00
|
|
|
if (matrix_scan_user) {
|
|
|
|
(*matrix_scan_user)();
|
|
|
|
}
|
|
|
|
};
|