qmk-firmware/keyboard/planck/planck.c

37 lines
498 B
C
Raw Normal View History

2015-10-26 18:49:46 +00:00
#include "planck.h"
2015-10-26 20:32:37 +00:00
__attribute__ ((weak))
2015-10-26 18:49:46 +00:00
void * matrix_init_user(void) {
};
2015-10-26 20:32:37 +00:00
__attribute__ ((weak))
2015-10-26 18:49:46 +00:00
void * matrix_scan_user(void) {
};
2015-10-26 20:32:37 +00:00
void * matrix_init_kb(void) {
2015-10-26 18:49:46 +00:00
#ifdef BACKLIGHT_ENABLE
backlight_init_ports();
#endif
2016-01-24 21:14:50 +00:00
#ifdef RGBLIGHT_ENABLE
rgblight_init();
#endif
2015-10-26 18:49:46 +00:00
// Turn status LED on
DDRE |= (1<<6);
PORTE |= (1<<6);
if (matrix_init_user) {
(*matrix_init_user)();
}
};
2015-10-26 20:32:37 +00:00
void * matrix_scan_kb(void) {
2015-10-26 18:49:46 +00:00
if (matrix_scan_user) {
(*matrix_scan_user)();
}
2016-01-24 21:14:50 +00:00
};