2023-10-05 05:56:26 +02:00
|
|
|
// 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
|
2024-05-03 07:21:29 +02:00
|
|
|
gpio_set_pin_input_high(D0);
|
|
|
|
gpio_set_pin_input_high(D1);
|
2023-10-05 05:56:26 +02:00
|
|
|
|
|
|
|
keyboard_pre_init_user();
|
|
|
|
}
|