~ruther/qmk_firmware

ref: 2f3383a11e0b459a1e89fea04914bce983eed2fe qmk_firmware/keyboards/viktus/sp111_v2/sp111_v2.c -rw-r--r-- 319 bytes
2f3383a1 — Joel Challis Fix make clean test:os_detection (#23112) 1 year, 3 months ago
                                                                                
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();
}
Do not follow this link