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