2015-10-26 19:49:46 +01:00
|
|
|
#include "planck.h"
|
|
|
|
|
2015-10-26 21:32:37 +01:00
|
|
|
__attribute__ ((weak))
|
2016-03-28 16:14:54 +02:00
|
|
|
void matrix_init_user(void) {}
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2015-10-26 21:32:37 +01:00
|
|
|
__attribute__ ((weak))
|
2016-03-28 16:14:54 +02:00
|
|
|
void matrix_scan_user(void) {}
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2016-03-28 16:14:54 +02:00
|
|
|
__attribute__ ((weak))
|
|
|
|
void process_action_user(keyrecord_t *record) {}
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_init_kb(void) {
|
2016-03-28 16:14:54 +02:00
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init_ports();
|
|
|
|
#endif
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2016-03-28 16:14:54 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
|
|
rgblight_init();
|
|
|
|
#endif
|
2016-01-24 22:14:50 +01:00
|
|
|
|
2016-03-28 16:14:54 +02:00
|
|
|
// Turn status LED on
|
|
|
|
DDRE |= (1<<6);
|
|
|
|
PORTE |= (1<<6);
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
matrix_init_user();
|
|
|
|
}
|
2015-10-26 19:49:46 +01:00
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_scan_kb(void) {
|
|
|
|
matrix_scan_user();
|
|
|
|
}
|
2016-03-28 16:14:54 +02:00
|
|
|
|
|
|
|
void process_action_kb(keyrecord_t *record) {
|
|
|
|
process_action_user(record);
|
|
|
|
}
|