qmk_firmware/keyboard/planck/planck.c

33 lines
422 B
C
Raw Normal View History

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