added ergodox
This commit is contained in:
@@ -1,14 +1,16 @@
|
||||
#include "planck.h"
|
||||
|
||||
__attribute__ ((weak))
|
||||
void * matrix_init_user(void) {
|
||||
|
||||
};
|
||||
|
||||
__attribute__ ((weak))
|
||||
void * matrix_scan_user(void) {
|
||||
|
||||
};
|
||||
|
||||
void *matrix_init_kb(void) {
|
||||
void * matrix_init_kb(void) {
|
||||
#ifdef BACKLIGHT_ENABLE
|
||||
backlight_init_ports();
|
||||
#endif
|
||||
@@ -22,7 +24,7 @@ void *matrix_init_kb(void) {
|
||||
}
|
||||
};
|
||||
|
||||
void *matrix_scan_kb(void) {
|
||||
void * matrix_scan_kb(void) {
|
||||
if (matrix_scan_user) {
|
||||
(*matrix_scan_user)();
|
||||
}
|
||||
|
Reference in New Issue
Block a user