mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
13 lines
335 B
C
13 lines
335 B
C
// 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
|
|
gpio_set_pin_input_high(D0);
|
|
gpio_set_pin_input_high(D1);
|
|
|
|
keyboard_pre_init_user();
|
|
}
|