summaryrefslogtreecommitdiff
path: root/keyboards/viktus/sp111_v2/sp111_v2.c
blob: 96a9aaa5fe40f85be733c920510bcc5ef089f884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2023 BlindAssassin111 (@blindassassin111)
// SPDX-License-Identifier: GPL-2.0-or-later

#include "quantum.h"

void keyboard_pre_init_kb(void) {
    // enable built in pullups to avoid timeouts when right hand not connected
    setPinInputHigh(D0);
    setPinInputHigh(D1);

    keyboard_pre_init_user();
}