2015-10-30 05:49:11 +01:00
|
|
|
#include "atomic.h"
|
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_init_user(void) {
|
2015-10-30 05:49:11 +01:00
|
|
|
// leave these blank
|
2016-03-10 17:28:34 +01:00
|
|
|
}
|
2015-10-30 05:49:11 +01:00
|
|
|
|
|
|
|
__attribute__ ((weak))
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_scan_user(void) {
|
2015-10-30 05:49:11 +01:00
|
|
|
// leave these blank
|
2016-03-10 17:28:34 +01:00
|
|
|
}
|
2015-10-30 05:49:11 +01:00
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_init_kb(void) {
|
2015-10-30 05:49:11 +01:00
|
|
|
// put your keyboard start-up code here
|
|
|
|
// runs once when the firmware starts up
|
|
|
|
|
|
|
|
MCUCR |= (1<<JTD);
|
|
|
|
MCUCR |= (1<<JTD);
|
|
|
|
|
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init_ports();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Turn status LED on
|
|
|
|
DDRE |= (1<<6);
|
|
|
|
PORTE |= (1<<6);
|
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
matrix_init_user();
|
|
|
|
}
|
2015-10-30 05:49:11 +01:00
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
void matrix_scan_kb(void) {
|
2015-10-30 05:49:11 +01:00
|
|
|
// put your looping keyboard code here
|
|
|
|
// runs every cycle (a lot)
|
|
|
|
|
2016-03-10 17:28:34 +01:00
|
|
|
matrix_scan_user();
|
|
|
|
}
|