diff options
author | TerryMathews <terry@terrymathews.net> | 2020-06-25 17:02:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 22:02:27 +0100 |
commit | 6d88794960df06059dfa5805b99e271e14270cf2 (patch) | |
tree | df75c5f5125d15b6b4b123b8a84fcce3e7fe32a6 /keyboards/m0lly/m0lly.c | |
parent | 7a710fb426024d2b4591de3c375da54bb78ae363 (diff) |
M0lly: add support for VIA (#9535)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/m0lly/m0lly.c')
-rw-r--r-- | keyboards/m0lly/m0lly.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/keyboards/m0lly/m0lly.c b/keyboards/m0lly/m0lly.c index 5e1b5371a1..e47f9531e1 100644 --- a/keyboards/m0lly/m0lly.c +++ b/keyboards/m0lly/m0lly.c @@ -16,6 +16,13 @@ #include "m0lly.h" #include "led.h" +void keyboard_pre_init_kb(void) { + setPinInputHigh(D0); + setPinInputHigh(D1); + + keyboard_pre_init_user(); +} + void matrix_init_kb(void) { // put your keyboard start-up code here // runs once when the firmware starts up |