Skip to content

Commit

Permalink
[Keyboard] Fix calls in handwired/jotanck (qmk#7515)
Browse files Browse the repository at this point in the history
The C file for this keyboard was calling `keyboard_pre_init_user`.  Which is wrong.

This fixes that behavior.
  • Loading branch information
drashna authored and zvecr committed Nov 30, 2019
1 parent beb9f3a commit d98ed28
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions keyboards/handwired/jotanck/jotanck.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#include "jotanck.h"

void matrix_init_kb(void) {
matrix_init_user();
matrix_init_user();
}

void keyboard_pre_init_user() {
setPinOutput(JOTANCK_LED1);
setPinOutput(JOTANCK_LED2);
void keyboard_pre_init_kb() {
setPinOutput(JOTANCK_LED1);
setPinOutput(JOTANCK_LED2);

keyboard_pre_init_user();
}

0 comments on commit d98ed28

Please sign in to comment.