mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-15 08:25:01 +00:00
d98ed28e7c
The C file for this keyboard was calling `keyboard_pre_init_user`. Which is wrong. This fixes that behavior.
12 lines
208 B
C
12 lines
208 B
C
#include "jotanck.h"
|
|
|
|
void matrix_init_kb(void) {
|
|
matrix_init_user();
|
|
}
|
|
|
|
void keyboard_pre_init_kb() {
|
|
setPinOutput(JOTANCK_LED1);
|
|
setPinOutput(JOTANCK_LED2);
|
|
|
|
keyboard_pre_init_user();
|
|
}
|